OLD | NEW |
| (Empty) |
1 <!-- | |
2 @WIN-ALLOW:description* | |
3 @MAC-ALLOW:AXDescription* | |
4 @MAC-ALLOW:AXHelp* | |
5 @MAC-DENY:AXValue* | |
6 --> | |
7 <html> | |
8 <body> | |
9 <input id="c0" type="checkbox" title="Title0"> | |
10 <input id="c1" type="checkbox" title="Title1"> | |
11 <input id="c2" type="checkbox" title="Title2" aria-label="AriaLabel2"> | |
12 <input id="c3" type="checkbox" title="Title3" aria-label="AriaLabel3" | |
13 aria-labelledby="lb3"> | |
14 <input id="c4" type="checkbox" title="Title4" aria-label="AriaLabel4" | |
15 aria-labelledby="lb4" aria-describedby="db4"> | |
16 <input id="c5" type="checkbox" aria-describedby="db5"> | |
17 | |
18 <p aria-label="@NO_DUMP"> | |
19 <label for="c1">Label1</label> | |
20 <label for="c2">Label2</label> | |
21 <label for="c3">Label3</label> | |
22 <label for="c4">Label4</label> | |
23 <span id="lb3">LabelledBy3</span> | |
24 <span id="lb4">LabelledBy4</span> | |
25 <span id="db4">DescribedBy4</span> | |
26 <span id="db5">DescribedBy5</span> | |
27 </p> | |
28 </body> | |
29 </html> | |
OLD | NEW |