Tests: Import the WPT accname/basic.html test
This change imports the https://wpt.live/accname/basic.html — which we had overlooked earlier when importing all the other WPT accname tests. (Note that this one of the six upstream WPT tests that directly call test_driver.get_computed_label(element) — and so that we’d otherwise need to patch our copy of, if we weren’t patching it in testdriver.js).
This commit is contained in:
parent
e10db3aaf0
commit
c1b29e7cc4
Notes:
github-actions[bot]
2024-12-07 08:26:16 +00:00
Author: https://github.com/sideshowbarker Commit: https://github.com/LadybirdBrowser/ladybird/commit/c1b29e7cc46 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2821 Reviewed-by: https://github.com/tcl3 ✅
2 changed files with 39 additions and 0 deletions
7
Tests/LibWeb/Text/expected/wpt-import/accname/basic.txt
Normal file
7
Tests/LibWeb/Text/expected/wpt-import/accname/basic.txt
Normal file
|
@ -0,0 +1,7 @@
|
|||
Harness status: OK
|
||||
|
||||
Found 2 tests
|
||||
|
||||
2 Pass
|
||||
Pass tests labelFrom: author
|
||||
Pass tests labelFrom: contents
|
32
Tests/LibWeb/Text/input/wpt-import/accname/basic.html
Normal file
32
Tests/LibWeb/Text/input/wpt-import/accname/basic.html
Normal file
|
@ -0,0 +1,32 @@
|
|||
<!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>
|
||||
|
||||
<!--
|
||||
|
||||
These tests should remain solid and passing in any implementation that supports get_computed_label.
|
||||
|
||||
It uses a standard promise_test (rather than aria-util.js) to reduce other dependencies.
|
||||
|
||||
If you're adding something you expect to fail in one or more implementations, you probably want a different file.
|
||||
|
||||
-->
|
||||
|
||||
<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>
|
Loading…
Add table
Reference in a new issue