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

Side by Side Diff: LayoutTests/fast/backgrounds/transformed-html-body-background.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 <style> 5 <style>
6 html { 6 html {
7 -webkit-transform: rotate(20deg); 7 transform: rotate(20deg);
8 -webkit-transform-origin: top left; 8 -webkit-transform-origin: top left;
9 } 9 }
10 10
11 body { 11 body {
12 background-color: silver; 12 background-color: silver;
13 overflow: hidden; 13 overflow: hidden;
14 } 14 }
15 15
16 .contents { 16 .contents {
17 height: 1200px; 17 height: 1200px;
18 width: 100%; 18 width: 100%;
19 border: 1px solid black; 19 border: 1px solid black;
20 } 20 }
21 </style> 21 </style>
22 <script> 22 <script>
23 if (window.testRunner) 23 if (window.testRunner)
24 testRunner.dumpAsTextWithPixelResults(); 24 testRunner.dumpAsTextWithPixelResults();
25 </script> 25 </script>
26 </head> 26 </head>
27 <body> 27 <body>
28 <div class="contents"></div> 28 <div class="contents"></div>
29 </body> 29 </body>
30 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698