Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <style> | |
| 2 @font-face { | |
| 3 font-family: ahem; | |
| 4 src: url(Ahem.ttf); | |
| 5 } | |
| 6 * { | |
| 7 font-family: ahem; | |
| 8 margin: 0; | |
| 9 padding: 0; | |
| 10 } | |
| 11 </style> | |
| 12 <input type="text" id="text"/> | |
| 13 <script> | |
| 14 var textNode = document.getElementById("text"); | |
| 15 textNode.focus(); | |
| 16 | |
| 17 var expectEditable = true; | |
| 18 var expectEmptyTextFormControl = true; | |
| 19 window.expectedResult = [document, 2, 2, 2, 14, document, 2, 2, 2, 14, expec tEditable, expectEmptyTextFormControl]; | |
| 20 </script> | |
| 21 | |
| OLD | NEW |