summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/conformance-checkers/html-aria/combobox-autocomplete-list/input.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html-aria/combobox-autocomplete-list/input.html')
-rw-r--r--testing/web-platform/tests/conformance-checkers/html-aria/combobox-autocomplete-list/input.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/combobox-autocomplete-list/input.html b/testing/web-platform/tests/conformance-checkers/html-aria/combobox-autocomplete-list/input.html
new file mode 100644
index 0000000000..7bf7dd587a
--- /dev/null
+++ b/testing/web-platform/tests/conformance-checkers/html-aria/combobox-autocomplete-list/input.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <title>Input with role="combobox" and aria-autocomplete="list"</title>
+ </head>
+ <body>
+ <input tabindex="0" type="text" id="test" role="combobox" aria-label="Tag" aria-expanded="true"
+ aria-autocomplete="list" aria-owns="owned_listbox" aria-activedescendant="selected_option">
+ <ul role="listbox" id="owned_listbox">
+ <li role="option">Zebra</li>
+ <li role="option" id="selected_option" aria-selected="true">Zoom</li>
+ </ul>
+ </body>
+</html>