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

Side by Side Diff: LayoutTests/compositing/checkerboard.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 PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN" 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN"
2 "http://www.w3.org/TR/html4/strict.dtd"> 2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html> 3 <html>
4 <head> 4 <head>
5 <script type="text/javascript"> 5 <script type="text/javascript">
6 function horiz_scroll() { 6 function horiz_scroll() {
7 if (window.testRunner) 7 if (window.testRunner)
8 testRunner.waitUntilDone(); 8 testRunner.waitUntilDone();
9 9
10 var pos = 0; 10 var pos = 0;
11 var inner = function () { 11 var inner = function () {
12 window.scrollTo(pos, 1023); 12 window.scrollTo(pos, 1023);
13 pos += 15; 13 pos += 15;
14 if (pos < 2047) 14 if (pos < 2047)
15 setTimeout(inner, 0); 15 setTimeout(inner, 0);
16 else if (window.testRunner) 16 else if (window.testRunner)
17 testRunner.notifyDone(); 17 testRunner.notifyDone();
18 }; 18 };
19 inner(); 19 inner();
20 } 20 }
21 </script> 21 </script>
22 </head> 22 </head>
23 <body style="overflow: hidden" onload="horiz_scroll()"> 23 <body style="overflow: hidden" onload="horiz_scroll()">
24 <div style="-webkit-transform: translateZ(0);"></div> 24 <div style="transform: translateZ(0);"></div>
25 <div style=" 25 <div style="
26 background-image: url('data:image/gif;base64,R0lGODdhAgACAIABAAAAAP/ //ywAAAAAAgACAAACA0QCBQA7'); 26 background-image: url('data:image/gif;base64,R0lGODdhAgACAIABAAAAAP/ //ywAAAAAAgACAAACA0QCBQA7');
27 width: 2047px; 27 width: 2047px;
28 height: 2047px; 28 height: 2047px;
29 "></div> 29 "></div>
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/bounds-in-flipped-writing-mode.html ('k') | LayoutTests/compositing/child-layer-3d-sorting.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698