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

Side by Side Diff: LayoutTests/compositing/layer-creation/overlap-clipping.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> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 4
5 #clipped { 5 #clipped {
6 position: absolute; 6 position: absolute;
7 left: 0px; 7 left: 0px;
8 right: 0px; 8 right: 0px;
9 width: 100px; 9 width: 100px;
10 height: 100px; 10 height: 100px;
11 overflow: hidden; 11 overflow: hidden;
12 } 12 }
13 13
14 #child { 14 #child {
15 width: 500px; 15 width: 500px;
16 height: 100px; 16 height: 100px;
17 background-color: green; 17 background-color: green;
18 -webkit-transform:translateZ(0); 18 transform:translateZ(0);
19 } 19 }
20 20
21 #overlap { 21 #overlap {
22 position: absolute; 22 position: absolute;
23 left: 400px; 23 left: 400px;
24 top: 0px; 24 top: 0px;
25 width: 100px; 25 width: 100px;
26 height: 100px; 26 height: 100px;
27 background-color: blue; 27 background-color: blue;
28 } 28 }
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 <div id="clipped"></div> 62 <div id="clipped"></div>
63 <div id="child"></div> 63 <div id="child"></div>
64 64
65 <!-- this element should get its own layer --> 65 <!-- this element should get its own layer -->
66 <div id="overlap"></div> 66 <div id="overlap"></div>
67 </div> 67 </div>
68 68
69 <pre id="layertree"></pre> 69 <pre id="layertree"></pre>
70 </body> 70 </body>
71 </html> 71 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698