| OLD | NEW |
| (Empty) |
| 1 <!-- | |
| 2 @WIN-ALLOW:description* | |
| 3 --> | |
| 4 <html> | |
| 5 <body> | |
| 6 <input id="c0" type="text" title="Title0"> | |
| 7 <input id="c1" type="text" title="Title1"> | |
| 8 <input id="c2" type="text" title="Title2" aria-label="AriaLabel2"> | |
| 9 <input id="c3" type="text" title="Title3" aria-label="AriaLabel3" | |
| 10 aria-labelledby="lb3"> | |
| 11 | |
| 12 <input id="c4" type="text" placeholder="Placeholder4"> | |
| 13 <input id="c5" type="text" placeholder="Placeholder5" title="Title5"> | |
| 14 | |
| 15 <input id="c6" type="text" title="Title6" | |
| 16 aria-label="AriaLabel6" aria-labelledby="lb6" | |
| 17 aria-describedby="db6"> | |
| 18 | |
| 19 <p aria-label="@NO_DUMP"> | |
| 20 <label for="c1">Label1</label> | |
| 21 <label for="c2">Label2</label> | |
| 22 <label for="c3">Label3</label> | |
| 23 | |
| 24 <label for="c6">Label6</label> | |
| 25 | |
| 26 <span id="lb3">LabelledBy3</span> | |
| 27 | |
| 28 <span id="lb6">LabelledBy6</span> | |
| 29 | |
| 30 <span id="db6">DescribedBy6</span> | |
| 31 </p> | |
| 32 </body> | |
| 33 </html> | |
| OLD | NEW |