OLD | NEW |
---|---|
(Empty) | |
1 <!-- | |
2 @WIN-ALLOW:description* | |
3 --> | |
4 <html> | |
5 <body> | |
6 <button id="c0">InnerText</button> | |
7 <button id="c1" title="Title">InnerText</button> | |
aboxhall
2012/08/01 01:56:57
Would it be worthwhile having a more complicated e
dmazzoni
2012/08/01 03:22:41
Yes! But maybe for the next test? This is complica
aboxhall
2012/08/06 01:55:49
Makes sense, and I've certainly caused enough dela
| |
8 <button id="c2" title="Title" aria-label="AriaLabel">InnerText</button> | |
9 <button id="c3" title="Title" aria-label="AriaLabel" | |
10 aria-labelledby="lb3">InnerText</button> | |
11 <button id="c4" title="Title" aria-label="AriaLabel" | |
12 aria-labelledby="lb4" aria-describedby="db4">InnerText</button> | |
13 <button id="c5" aria-describedby="db5">InnerText</button> | |
14 | |
15 <p aria-label="@NO_DUMP"> | |
16 <span id="lb3">LabelledBy</span> | |
17 <span id="lb4">LabelledBy</span> | |
18 <span id="db4">DescribedBy</span> | |
19 <span id="db5">DescribedBy</span> | |
20 </p> | |
21 </body> | |
22 </html> | |
OLD | NEW |