| OLD | NEW |
| 1 <style> | 1 <style> |
| 2 body { | 2 body { |
| 3 overflow: hidden; | 3 overflow: hidden; |
| 4 } | 4 } |
| 5 .composited { | 5 .composited { |
| 6 -webkit-transform: translateZ(0); | 6 transform: translateZ(0); |
| 7 } | 7 } |
| 8 | 8 |
| 9 .box { | 9 .box { |
| 10 width: 100px; | 10 width: 100px; |
| 11 height: 100px; | 11 height: 100px; |
| 12 background-color: blue; | 12 background-color: blue; |
| 13 } | 13 } |
| 14 | 14 |
| 15 img { | 15 img { |
| 16 background-color: black; | 16 background-color: black; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 </div> | 84 </div> |
| 85 | 85 |
| 86 <div style="position: absolute; left: 0px; top: 250px; z-index: 0; " class="
composited"> | 86 <div style="position: absolute; left: 0px; top: 250px; z-index: 0; " class="
composited"> |
| 87 <div class="inline"></div> | 87 <div class="inline"></div> |
| 88 <img style="position: absolute; left: 50px; top: 50px; z-index: -1;"> | 88 <img style="position: absolute; left: 50px; top: 50px; z-index: -1;"> |
| 89 <img style="position: absolute; left: 400px; top: 150px; z-index: 0;" cl
ass="to-hidden"> | 89 <img style="position: absolute; left: 400px; top: 150px; z-index: 0;" cl
ass="to-hidden"> |
| 90 </div> | 90 </div> |
| 91 | 91 |
| 92 <pre id="layers">Layer tree goes here in DRT</pre> | 92 <pre id="layers">Layer tree goes here in DRT</pre> |
| 93 </body> | 93 </body> |
| OLD | NEW |