Bug 1611320 [wpt PR 21400] - Gate Longtasks and PaintTiming tests under assert_precon...
[gecko.git] / testing / web-platform / tests / accname / name_text-label-embedded-select-manual.html
blob6a0f6e10b86026f5d5c62c689951ab46412f93d1
1 <!doctype html>
2 <html>
3 <head>
4 <title>Name text-label-embedded-select</title>
5 <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
6 <link rel="stylesheet" href="/wai-aria/scripts/manual.css">
7 <script src="/resources/testharness.js"></script>
8 <script src="/resources/testharnessreport.js"></script>
9 <script src="/wai-aria/scripts/ATTAcomm.js"></script>
10 <script>
11 setup({explicit_timeout: true, explicit_done: true });
13 var theTest = new ATTAcomm(
15 "steps" : [
17 "element" : "test",
18 "test" : {
19 "ATK" : [
21 "property",
22 "name",
23 "is",
24 "Flash the screen 1 times."
27 "AXAPI" : [
29 "property",
30 "AXDescription",
31 "is",
32 "Flash the screen 1 times."
35 "IAccessible2" : [
37 "property",
38 "accName",
39 "is",
40 "Flash the screen 1 times."
43 "UIA" : [
45 "property",
46 "Name",
47 "is",
48 "Flash the screen 1 times."
52 "title" : "step 1",
53 "type" : "test"
56 "title" : "Name text-label-embedded-select"
59 ) ;
60 </script>
61 </head>
62 <body>
63 <p>This test examines the ARIA properties for Name text-label-embedded-select.</p>
64 <input type="text" id="test" />
65 <label for="test">Flash the screen
66 <select size="1">
67 <option selected="selected">1</option>
68 <option>2</option>
69 <option>3</option>
70 </select>
71 times.
72 </label>
74 <div id="manualMode"></div>
75 <div id="log"></div>
76 <div id="ATTAmessages"></div>
77 </body>
78 </html>