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

Side by Side Diff: LayoutTests/compositing/layer-creation/overlap-child-layer.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 #container { 4 #container {
5 position: absolute; 5 position: absolute;
6 top: 0px; 6 top: 0px;
7 left: 400px; 7 left: 400px;
8 -webkit-transform: translateZ(0); 8 transform: translateZ(0);
9 } 9 }
10 10
11 #red { 11 #red {
12 position: absolute; 12 position: absolute;
13 top: 0px; 13 top: 0px;
14 left: -400px; 14 left: -400px;
15 height: 256px; 15 height: 256px;
16 width: 256px; 16 width: 256px;
17 background-color: red; 17 background-color: red;
18 } 18 }
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 <!-- this red square should not appear over the green square --> 58 <!-- this red square should not appear over the green square -->
59 <div id="red"></div> 59 <div id="red"></div>
60 </div> 60 </div>
61 61
62 <!-- This green square should composite because it overlaps the red one --> 62 <!-- This green square should composite because it overlaps the red one -->
63 <div id="green"></div> 63 <div id="green"></div>
64 64
65 <pre id="layertree"></pre> 65 <pre id="layertree"></pre>
66 </body> 66 </body>
67 </html> 67 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698