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

Side by Side Diff: LayoutTests/fast/hidpi/gradient-with-scaled-ancestor.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 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 function startTest() { 4 function startTest() {
5 if (window.testRunner) { 5 if (window.testRunner) {
6 testRunner.waitUntilDone(); 6 testRunner.waitUntilDone();
7 testRunner.setBackingScaleFactor(2, finishTest); 7 testRunner.setBackingScaleFactor(2, finishTest);
8 } 8 }
9 } 9 }
10 10
11 function finishTest() { 11 function finishTest() {
12 setTimeout(function() { testRunner.notifyDone(); }, 0); 12 setTimeout(function() { testRunner.notifyDone(); }, 0);
13 } 13 }
14 </script> 14 </script>
15 </head> 15 </head>
16 <body onload="startTest();" style="overflow:hidden;"> 16 <body onload="startTest();" style="overflow:hidden;">
17 <div style="-webkit-transform:scale(1.5); -webkit-transform-origin:top l eft;"> 17 <div style="transform:scale(1.5); -webkit-transform-origin:top left;">
18 <div style="height:300px;width:300px;background-image:-webkit-repeat ing-linear-gradient(top left, red 10%, blue 30%);border:1px solid"> 18 <div style="height:300px;width:300px;background-image:-webkit-repeat ing-linear-gradient(top left, red 10%, blue 30%);border:1px solid">
19 </div> 19 </div>
20 </div> 20 </div>
21 </body> 21 </body>
22 </html> 22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698