OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 #el0 { -webkit-appearance: none; } | 4 #el0 { -webkit-appearance: none; } |
5 .c0 { display: run-in; } | 5 .c0 { display: run-in; } |
6 </style> | 6 </style> |
7 </head> | 7 </head> |
8 <body><input type=text id=el0> | 8 <body><input type=text id=el0> |
9 <script> | 9 <script> |
10 if (window.testRunner) | 10 if (window.testRunner) |
11 testRunner.dumpAsText(); | 11 testRunner.dumpAsText(); |
12 document.body.appendChild(el0); | 12 document.body.appendChild(el0); |
13 document.body.appendChild(document.createElement('div')); | 13 document.body.appendChild(document.createElement('div')); |
14 document.body.offsetTop; | 14 document.body.offsetTop; |
15 el0.classList.add('c0'); | 15 el0.classList.add('c0'); |
16 document.body.offsetTop; | 16 document.body.offsetTop; |
17 document.body.innerHTML = 'PASS if not crashed'; | 17 document.body.innerHTML = 'PASS if not crashed'; |
18 </script> | 18 </script> |
19 </body> | 19 </body> |
OLD | NEW |