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

Side by Side Diff: LayoutTests/fast/layers/scroll-with-transform-layer.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform 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 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 p { height: 100px; width: 100px; margin: 0px; } 5 p { height: 100px; width: 100px; margin: 0px; }
6 p.red { background-color: red; } 6 p.red { background-color: red; }
7 p.green { background-color: green; } 7 p.green { background-color: green; }
8 div { height: 100px; width: 100px; } 8 div { height: 100px; width: 100px; }
9 div.relative { position: relative } 9 div.relative { position: relative }
10 div.rotated 10 div.rotated
11 { 11 {
12 -webkit-transform: rotate(360deg); 12 transform: rotate(360deg);
13 -moz-transform: rotate(360deg); 13 -moz-transform: rotate(360deg);
14 transform: rotate(360deg); 14 transform: rotate(360deg);
alancutter (OOO until 2018) 2014/10/14 05:13:48 Extra -moz-transform and transform here and below.
15 } 15 }
16 div.translated 16 div.translated
17 { 17 {
18 -webkit-transform: translate(0); 18 transform: translate(0);
19 -moz-transform: translate(0); 19 -moz-transform: translate(0);
20 transform: translate(0); 20 transform: translate(0);
21 } 21 }
22 </style> 22 </style>
23 <script> 23 <script>
24 if (window.testRunner) 24 if (window.testRunner)
25 testRunner.dumpAsTextWithPixelResults(); 25 testRunner.dumpAsTextWithPixelResults();
26 </script> 26 </script>
27 </head> 27 </head>
28 <body> 28 <body>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 </div> 63 </div>
64 </div> 64 </div>
65 <br> 65 <br>
66 <script> 66 <script>
67 var scrollMes = document.getElementsByClassName("scrollMe"); 67 var scrollMes = document.getElementsByClassName("scrollMe");
68 for (var i = 0; i < scrollMes.length; ++i) 68 for (var i = 0; i < scrollMes.length; ++i)
69 scrollMes[i].scrollTop = 100; 69 scrollMes[i].scrollTop = 100;
70 </script> 70 </script>
71 </body> 71 </body>
72 </html> 72 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698