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/compositing/contents-opaque/overflow-hidden-child-layers.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> 4 <style>
5 .box { 5 .box {
6 height: 100px; 6 height: 100px;
7 width: 100px; 7 width: 100px;
8 margin: 50px; 8 margin: 50px;
9 background-color: blue; 9 background-color: blue;
10 box-shadow: 0 0 20px black; 10 box-shadow: 0 0 20px black;
11 overflow: hidden; 11 overflow: hidden;
12 -webkit-transform: translateZ(0); 12 transform: translateZ(0);
13 } 13 }
14 .child { 14 .child {
15 position: relative; 15 position: relative;
16 top: -30px; 16 top: -30px;
17 left: -30px; 17 left: -30px;
18 width: 300px; 18 width: 300px;
19 height: 300px; 19 height: 300px;
20 background-color: silver; 20 background-color: silver;
21 } 21 }
22 </style> 22 </style>
(...skipping 10 matching lines...) Expand all
33 </head> 33 </head>
34 <body> 34 <body>
35 35
36 <div class="box"> 36 <div class="box">
37 <div class="child"> 37 <div class="child">
38 </div> 38 </div>
39 </div> 39 </div>
40 <pre id="layertree"></pre> 40 <pre id="layertree"></pre>
41 </body> 41 </body>
42 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698