summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/wai-aria/role/basic.html
blob: 5cb838647015de9ea295e60184b2300bbb718bfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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>

<div id='d' style='height: 100px; width: 100px' role="group" aria-label="test label"></div>
<h1 id="h">test heading</h1>
<script>

promise_test(async t => {
  const role = await test_driver.get_computed_role(document.getElementById('d'));
  assert_equals(role, "group");
}, "tests explicit role");


promise_test(async t => {
  const role = await test_driver.get_computed_role(document.getElementById('h'));
  assert_equals(role, "heading");
}, "tests implicit role");

</script>