summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/close-watcher/esc-key/keypress.html
blob: 8dd58b064d7178184511a465e24b39220424abc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="../resources/helpers.js"></script>

<body>
<script>
promise_test(async t => {
  let events = [];
  let watcher = createRecordingCloseWatcher(t, events);

  window.onkeypress = e => e.preventDefault();

  await sendEscKey();

  assert_array_equals(events, ["close"]);
}, "A keypress listener can NOT prevent the Esc keypress from being interpreted as a close request");
</script>