| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 | 5 |
| 6 <style type="text/css"> | 6 <style type="text/css"> |
| 7 #transform { | 7 #transform { |
| 8 -webkit-transform: rotateZ(0deg) rotateX(0deg) rotateY(0deg); | 8 transform: rotateZ(0deg) rotateX(0deg) rotateY(0deg); |
| 9 } | 9 } |
| 10 </style> | 10 </style> |
| 11 | 11 |
| 12 <script src="../../resources/run-after-display.js"></script> | 12 <script src="../../resources/run-after-display.js"></script> |
| 13 <script> | 13 <script> |
| 14 if (window.testRunner) { | 14 if (window.testRunner) { |
| 15 testRunner.dumpAsText(); | 15 testRunner.dumpAsText(); |
| 16 testRunner.waitUntilDone(); | 16 testRunner.waitUntilDone(); |
| 17 } | 17 } |
| 18 | 18 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 48 </div> | 48 </div> |
| 49 | 49 |
| 50 <!-- Move the plugin to the middle of the page. This ensures that invalidate()
will invalidate the correct region. --> | 50 <!-- Move the plugin to the middle of the page. This ensures that invalidate()
will invalidate the correct region. --> |
| 51 <div style="position: absolute; left: 300px; top: 300px; height: 400px; width:
400px; padding: 1em;"> | 51 <div style="position: absolute; left: 300px; top: 300px; height: 400px; width:
400px; padding: 1em;"> |
| 52 | 52 |
| 53 <embed id="testPlugin" type="application/x-webkit-test-netscape" width="200"
height="200" onpaintevent="didPaint()" windowedPlugin="false"></embed> | 53 <embed id="testPlugin" type="application/x-webkit-test-netscape" width="200"
height="200" onpaintevent="didPaint()" windowedPlugin="false"></embed> |
| 54 | 54 |
| 55 </div> | 55 </div> |
| 56 </body> | 56 </body> |
| 57 </html> | 57 </html> |
| OLD | NEW |