summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/uievents/order-of-events/focus-events/focus-management-expectations.html
blob: 1845c15d71679276b6fbf4a19188d111da5ea70b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8">
  <title>Focus management event expectations</title>
  <link rel="author" title="Mu-An Chiou" href="https://muan.co">
  <link rel="help" href="https://w3c.github.io/uievents/#event-flow-activation">
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script src="/resources/testdriver.js"></script>
  <script src="/resources/testdriver-actions.js"></script>
  <script src="/resources/testdriver-vendor.js"></script>
</head>

<body>
  <button type="button" id="fromEl">Focus management from button</button>
  <button type="button" id="toEl">To button</button>
  <button type="button" id="EndTestEl">End test button</button>
</body>

<script>
  const from = document.getElementById("fromEl")
  const to = document.getElementById("toEl")
  const endTest = document.getElementById("EndTestEl")

  from.addEventListener("keydown", function (event) {
    if (event.key === " ") to.focus()
  })

  async_test(function (t) {
    let buttonFocused = false
    to.addEventListener("click", t.unreached_func("Button should not be clicked"))
    to.addEventListener("focus", () => buttonFocused = true)
    endTest.addEventListener('click', () => {
      assert_true(buttonFocused, "Button should be focused")
      t.step_timeout(() => t.done(), 200)
    })

    // execute test
    from.focus()
    new test_driver.Actions().keyDown("\ue00d").keyUp("\ue00d").send().then(() =>
      new test_driver.click(endTest)
    )
  }, "Keydown to focus should not trigger activation")
</script>

</html>