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

Side by Side Diff: LayoutTests/compositing/geometry/bounds-ignores-hidden-dynamic.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 <style> 1 <style>
2 .composited { 2 .composited {
3 -webkit-transform: translateZ(0); 3 transform: translateZ(0);
4 } 4 }
5 5
6 .box { 6 .box {
7 width: 100px; 7 width: 100px;
8 height: 100px; 8 height: 100px;
9 background-color: blue; 9 background-color: blue;
10 } 10 }
11 11
12 img { 12 img {
13 background-color: black; 13 background-color: black;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 <img style="position: absolute; left: 10px; top: 10px; z-index: 0;"> 56 <img style="position: absolute; left: 10px; top: 10px; z-index: 0;">
57 <img style="position: absolute; left: 500px; top: 200px; z-index: 0;" cl ass="to-visible"> 57 <img style="position: absolute; left: 500px; top: 200px; z-index: 0;" cl ass="to-visible">
58 </div> 58 </div>
59 59
60 <div style="position: absolute; left: 0px; top: 250px; z-index: 106; " class ="composited"> 60 <div style="position: absolute; left: 0px; top: 250px; z-index: 106; " class ="composited">
61 <img style="position: absolute; left: 10px; top: 10px; z-index: 0;"> 61 <img style="position: absolute; left: 10px; top: 10px; z-index: 0;">
62 <img style="position: absolute; left: 500px; top: 200px; z-index: 0;" cl ass="to-hidden"> 62 <img style="position: absolute; left: 500px; top: 200px; z-index: 0;" cl ass="to-hidden">
63 </div> 63 </div>
64 <pre id="layers">Layer tree goes here in DRT</pre> 64 <pre id="layers">Layer tree goes here in DRT</pre>
65 </body> 65 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698