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

Side by Side Diff: LayoutTests/fast/sub-pixel/transformed-iframe-copy-on-scroll.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 <html> 2 <html>
3 <head> 3 <head>
4 <style type="text/css" media="screen"> 4 <style type="text/css" media="screen">
5 .subpixelPusher { 5 .subpixelPusher {
6 position: relative; 6 position: relative;
7 top: 0.4px; 7 top: 0.4px;
8 z-index: 1; 8 z-index: 1;
9 } 9 }
10 .container { 10 .container {
11 display: inline-block; 11 display: inline-block;
12 padding-left: 80px; 12 padding-left: 80px;
13 padding-top: 10px; 13 padding-top: 10px;
14 } 14 }
15 .transform { 15 .transform {
16 -webkit-transform: rotate3d(0, 0, 1, 45deg); 16 transform: rotate3d(0, 0, 1, 45deg);
17 } 17 }
18 </style> 18 </style>
19 <script src="../../resources/run-after-display.js" type="text/javascript"></scri pt> 19 <script src="../../resources/run-after-display.js" type="text/javascript"></scri pt>
20 <script> 20 <script>
21 if (window.testRunner) { 21 if (window.testRunner) {
22 testRunner.waitUntilDone(); 22 testRunner.waitUntilDone();
23 testRunner.dumpAsTextWithPixelResults(); 23 testRunner.dumpAsTextWithPixelResults();
24 internals.settings.setMockScrollbarsEnabled(true); 24 internals.settings.setMockScrollbarsEnabled(true);
25 } 25 }
26 26
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 </div> 73 </div>
74 </div> 74 </div>
75 </div> 75 </div>
76 </div> 76 </div>
77 </div> 77 </div>
78 </div> 78 </div>
79 </div> 79 </div>
80 </div> 80 </div>
81 </body> 81 </body>
82 </html> 82 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698