OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 input:first-letter { | 5 input:first-letter { |
6 color: blue; | 6 color: blue; |
7 } | 7 } |
8 </style> | 8 </style> |
9 <script> | 9 <script> |
10 if (window.layoutTestController) | 10 if (window.layoutTestController) |
(...skipping 11 matching lines...) Expand all Loading... |
22 document.execCommand("selectAll"); // Does selectAll for aligning the @a
utofocus attribute on the expectation. | 22 document.execCommand("selectAll"); // Does selectAll for aligning the @a
utofocus attribute on the expectation. |
23 layoutTestController.notifyDone(); | 23 layoutTestController.notifyDone(); |
24 } | 24 } |
25 } | 25 } |
26 </script> | 26 </script> |
27 </head> | 27 </head> |
28 <body onload="test()"> | 28 <body onload="test()"> |
29 <input type="text" id="target" /> | 29 <input type="text" id="target" /> |
30 </body> | 30 </body> |
31 </html> | 31 </html> |
OLD | NEW |