Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: LayoutTests/compositing/plugins/invalidate_rect.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/perpendicular-layer-sorting.html ('k') | LayoutTests/compositing/preserve-3d-toggle.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698