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

Side by Side Diff: LayoutTests/compositing/columns/geometry-map-paginated-assert.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 style="overflow: -webkit-paged-x;"> 1 <html style="overflow: -webkit-paged-x;">
2 <head> 2 <head>
3 <script> 3 <script>
4 if (window.testRunner) 4 if (window.testRunner)
5 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
6 </script> 6 </script>
7 <style> 7 <style>
8 .spacer { 8 .spacer {
9 height: 350px; 9 height: 350px;
10 width: 100%; 10 width: 100%;
11 margin: 10px; 11 margin: 10px;
12 background-color: silver; 12 background-color: silver;
13 } 13 }
14 14
15 .box { 15 .box {
16 height: 100px; 16 height: 100px;
17 width: 100px; 17 width: 100px;
18 margin: 10px; 18 margin: 10px;
19 background-color: blue; 19 background-color: blue;
20 } 20 }
21 .composited { 21 .composited {
22 -webkit-transform: translateZ(0); 22 transform: translateZ(0);
23 } 23 }
24 </style> 24 </style>
25 </head> 25 </head>
26 <body> 26 <body>
27 27
28 <p>This test should not assert.</p> 28 <p>This test should not assert.</p>
29 <div class="spacer"></div> 29 <div class="spacer"></div>
30 <div class="spacer"></div> 30 <div class="spacer"></div>
31 <div class="composited box"></div> 31 <div class="composited box"></div>
32 32
33 33
34 </body> 34 </body>
35 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698