summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-selectlist-element/selectlist-option-focusable.tentative.html
blob: 993ef007e683052ec86d613a98d1a1b68f3e58f0 (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
49
<!DOCTYPE html>
<html lang="en">
<title>HTMLSelectListElement Test: option facusable</title>
<link rel="author" title="Ionel Popescu" href="mailto:iopopesc@microsoft.com">
<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>

<selectlist id="selectlist0">
  <option>one</option>
  <option id="selectlist0-option2">two</option>
  <option>three</option>
</selectlist>

<script>
// See https://w3c.github.io/webdriver/#keyboard-actions
const KEY_CODE_MAP = {
  'Enter':      '\uE007',
  'Space':      '\uE00D',
  'ArrowUp':    '\uE013',
  'ArrowDown':  '\uE015'
};

function clickOn(element) {
  const actions = new test_driver.Actions();
  return actions.pointerMove(0, 0, {origin: element})
      .pointerDown({button: actions.ButtonType.LEFT})
      .pointerUp({button: actions.ButtonType.LEFT})
      .send();
}

promise_test(async t => {
  const selectList = document.querySelector("#selectlist0");
  assert_false(selectList.open, "selectlist should not be initially open");

  await clickOn(selectList);
  assert_true(selectList.open);
  assert_equals(selectList.value, "one");

  const option2 = document.querySelector('#selectlist0-option2');
  option2.focus();
  assert_equals(document.activeElement, option2);

  await test_driver.send_keys(selectList, KEY_CODE_MAP.Enter);
  assert_equals(selectList.value, "two");
}, "Validate <option> is focusable when is a descendant of <selectlist>");
</script>