All Downloads are FREE. Search and download functionalities are using the official Maven repository.

www.reboot.components.bower_components.paper-input.test.util.js Maven / Gradle / Ivy

There is a newer version: 0.1.20
Show newest version
function activeElement() {
  return window.ShadowDOMPolyfill ? wrap(document.activeElement) : document.activeElement;
}

function assertNodeHasFocus(node) {
  assert.strictEqual(activeElement(), node);
}

function ensureFocus(node, callback) {
  fake.downOnNode(node);
  fake.upOnNode(node);
  waitFor(function() {
    assertNodeHasFocus(node);
  }, callback);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy