summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/accname/basic.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/accname/basic.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/accname/basic.html')
-rw-r--r--testing/web-platform/tests/accname/basic.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/web-platform/tests/accname/basic.html b/testing/web-platform/tests/accname/basic.html
new file mode 100644
index 0000000000..d84f4dc3b9
--- /dev/null
+++ b/testing/web-platform/tests/accname/basic.html
@@ -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>