Chromium Code Reviews| 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" autofocus> | |
|
dmazzoni
2016/11/16 23:34:34
Maybe remove autofocus? It doesn't make sense on m
aboxhall
2016/11/17 00:42:37
Done.
| |
| 14 <input type="text" aria-placeholder="aria-placeholder2" placeholder="placeho lder2" autofocus> | |
| 15 <input type="text" aria-label="aria-label3" aria-placeholder="aria-placehold er3" placeholder="placeholder3" autofocus> | |
| 16 <input type="text" aria-label="aria-label4" aria-placeholder="aria-placehold er4" autofocus> | |
| 17 <input type="text" aria-label="aria-label5" aria-describedby="ariadesc5" ari a-placeholder="aria-placeholder5" placeholder="placeholder5" autofocus> | |
| 18 <div id="ariadesc5">aria-description5</div> | |
| 19 <input type="text" aria-placeholder="aria-placeholder6" title="title6" autof ocus> | |
| 20 </body> | |
| 21 </html> | |
| OLD | NEW |