| OLD | NEW |
| (Empty) | |
| 1 <!-- |
| 2 @MAC-ALLOW:AXRole* |
| 3 @MAC-ALLOW:AXDescription* |
| 4 @MAC-ALLOW:AXPlaceholder* |
| 5 @WIN-ALLOW:placeholder* |
| 6 @WIN-ALLOW:description* |
| 7 @BLINK-ALLOW:placeholder=* |
| 8 @BLINK-ALLOW:description=* |
| 9 --> |
| 10 <!DOCTYPE html> |
| 11 <html> |
| 12 <body> |
| 13 <input type="text" aria-placeholder="aria-placeholder1"> |
| 14 <input type="text" aria-placeholder="aria-placeholder2" placeholder="placeho
lder2"> |
| 15 <input type="text" aria-label="aria-label3" aria-placeholder="aria-placehold
er3" placeholder="placeholder3"> |
| 16 <input type="text" aria-label="aria-label4" aria-placeholder="aria-placehold
er4"> |
| 17 <input type="text" aria-label="aria-label5" aria-describedby="ariadesc5" ari
a-placeholder="aria-placeholder5" placeholder="placeholder5"> |
| 18 <div id="ariadesc5">aria-description5</div> |
| 19 <input type="text" aria-placeholder="aria-placeholder6" title="title6"> |
| 20 </body> |
| 21 </html> |
| OLD | NEW |