mirror of
https://github.com/servo/servo.git
synced 2025-10-17 08:49:21 +01:00
22 lines
790 B
HTML
22 lines
790 B
HTML
<!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 label = await test_driver.get_computed_label(document.getElementById('d'));
|
|
assert_equals(label, "test label");
|
|
}, "tests labelFrom: author");
|
|
|
|
promise_test(async t => {
|
|
const label = await test_driver.get_computed_label(document.getElementById('h'));
|
|
assert_equals(label, "test heading");
|
|
}, "tests labelFrom: contents");
|
|
|
|
</script>
|