summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/close-watcher/resources/helpers.js
blob: 4e024a1908528f66e05cea30a470594b07cf092b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// TODO(domenic): consider using these in all test files.

window.createRecordingCloseWatcher = (t, events, name) => {
  const watcher = new CloseWatcher();
  t.add_cleanup(() => watcher.destroy());
  watcher.oncancel = () => events.push(name + " cancel");
  watcher.onclose = () => events.push(name + " close");

  return watcher;
};

window.createBlessedRecordingCloseWatcher = (t, events, name) => {
  return test_driver.bless("create " + name, () => createRecordingCloseWatcher(t, events, name));
};

window.sendCloseSignal = () => {
  // *not* \uu001B; see https://w3c.github.io/webdriver/#keyboard-actions
  const ESC = '\uE00C';

  return test_driver.send_keys(document.getElementById("d"), ESC);
};