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

Side by Side Diff: LayoutTests/compositing/geometry/tall-page-composited.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 type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 body { 6 body {
7 height: 2049px; /* Cause view-size limits to kick in on Leopard. */ 7 height: 2049px; /* Cause view-size limits to kick in on Leopard. */
8 } 8 }
9 9
10 .box { 10 .box {
11 position: absolute; 11 position: absolute;
12 width: 100px; 12 width: 100px;
13 height: 100px; 13 height: 100px;
14 } 14 }
15 15
16 .test { 16 .test {
17 -webkit-transform: translateZ(0); 17 transform: translateZ(0);
18 background-color: green; 18 background-color: green;
19 } 19 }
20 20
21 .indicator { 21 .indicator {
22 background-color: red; 22 background-color: red;
23 } 23 }
24 24
25 </style> 25 </style>
26 </head> 26 </head>
27 <body> 27 <body>
28 28
29 <!-- In the pixel results you should see no red. --> 29 <!-- In the pixel results you should see no red. -->
30 <div class="indicator box"></div> 30 <div class="indicator box"></div>
31 <div class="test box"></div> 31 <div class="test box"></div>
32 32
33 </body> 33 </body>
34 </html> 34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698