OLD | NEW |
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 Loading... |
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> |
OLD | NEW |