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

Side by Side Diff: LayoutTests/compositing/reflections/backface-hidden-reflection.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 6
7 .container { 7 .container {
8 height: 100px; 8 height: 100px;
9 width:100px; 9 width:100px;
10 background-color: green; 10 background-color: green;
11 } 11 }
12 12
13 .reflected { 13 .reflected {
14 height: 100px; 14 height: 100px;
15 width: 100px; 15 width: 100px;
16 background-color: red; 16 background-color: red;
17 -webkit-transform: rotate3d(0, 1, 0, 180deg); 17 transform: rotate3d(0, 1, 0, 180deg);
18 -webkit-box-reflect: below; 18 -webkit-box-reflect: below;
19 -webkit-backface-visibility: hidden; 19 -webkit-backface-visibility: hidden;
20 } 20 }
21 </style> 21 </style>
22 </head> 22 </head>
23 <body> 23 <body>
24 <!-- In the pixel results, a single green square should be visible. --> 24 <!-- In the pixel results, a single green square should be visible. -->
25 <div class="container"> 25 <div class="container">
26 <div class="reflected"> 26 <div class="reflected">
27 </div> 27 </div>
28 </div> 28 </div>
29 </body> 29 </body>
30 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698