| -webkit-transform: rotateZ(0deg) rotateX(0deg) rotateY(0deg); |
| testRunner.displayAndTrackRepaints(); |
| document.getElementById('testPlugin').invalidateRect(0, 0, 200, 200); |
| testRunner.displayAndTrackRepaints(); |
| document.getElementById('result').innerHTML = "SUCCESS"; |
| <body onload="onLoad();"> |
| This tests that NPN_InvalidateRect works correctly. |
| <div id="result">FAILURE</div> |
| <!-- force this page to be composited --> |
| <!-- Move the plugin to the middle of the page. This ensures that invalidate() will invalidate the correct region. --> |
| <div style="position: absolute; left: 300px; top: 300px; height: 400px; width: 400px; padding: 1em;"> |
| <embed id="testPlugin" type="application/x-webkit-test-netscape" width="200" height="200" onpaintevent="didPaint()" windowedPlugin="false"></embed> |