| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <style> | 3 <style> |
| 4 .fixedPosition { position: fixed; } | 4 .fixedPosition { position: fixed; } |
| 5 .runIn:nth-last-of-type(2n+1) { display: run-in; } | 5 .runIn:nth-last-of-type(2n+1) { display: run-in; } |
| 6 .transformed { float: none; -webkit-transform: skewX(45deg); } | 6 .transformed { float: none; -webkit-transform: skewX(45deg); } |
| 7 .floatLastChild:last-child { display: inline-block; float: left;} | 7 .floatLastChild:last-child { display: inline-block; float: left;} |
| 8 </style> | 8 </style> |
| 9 <script> | 9 <script> |
| 10 if (window.testRunner) { | 10 if (window.testRunner) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 if (window.testRunner) | 46 if (window.testRunner) |
| 47 testRunner.notifyDone() | 47 testRunner.notifyDone() |
| 48 } | 48 } |
| 49 | 49 |
| 50 window.addEventListener('load', removeContent, false); | 50 window.addEventListener('load', removeContent, false); |
| 51 document.addEventListener('DOMContentLoaded', crash, false); | 51 document.addEventListener('DOMContentLoaded', crash, false); |
| 52 </script> | 52 </script> |
| 53 <body> | 53 <body> |
| 54 </body> | 54 </body> |
| 55 </html> | 55 </html> |
| OLD | NEW |