| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <style> | 5 <style> |
| 6 .set { | 6 .set { |
| 7 position: absolute; | 7 position: absolute; |
| 8 top: 8px; | 8 top: 8px; |
| 9 } | 9 } |
| 10 .box { | 10 .box { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 .visible { | 27 .visible { |
| 28 visibility: visible; | 28 visibility: visible; |
| 29 } | 29 } |
| 30 .should-be-hidden { | 30 .should-be-hidden { |
| 31 background-color: red !important; | 31 background-color: red !important; |
| 32 } | 32 } |
| 33 .should-be-visible { | 33 .should-be-visible { |
| 34 background-color: green !important; | 34 background-color: green !important; |
| 35 } | 35 } |
| 36 .composited { | 36 .composited { |
| 37 -webkit-transform: translateZ(0); | 37 transform: translateZ(0); |
| 38 } | 38 } |
| 39 | 39 |
| 40 .visible-indicator { | 40 .visible-indicator { |
| 41 background-color: green; | 41 background-color: green; |
| 42 } | 42 } |
| 43 | 43 |
| 44 .hidden-indicator { | 44 .hidden-indicator { |
| 45 background-color: red; | 45 background-color: red; |
| 46 } | 46 } |
| 47 </style> | 47 </style> |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 <h2>Initial</h2> | 86 <h2>Initial</h2> |
| 87 <pre id="layers1"></pre> | 87 <pre id="layers1"></pre> |
| 88 | 88 |
| 89 <h2>After step 1</h2> | 89 <h2>After step 1</h2> |
| 90 <pre id="layers2"></pre> | 90 <pre id="layers2"></pre> |
| 91 | 91 |
| 92 <h2>After step 2</h2> | 92 <h2>After step 2</h2> |
| 93 <pre id="layers3"></pre> | 93 <pre id="layers3"></pre> |
| 94 </body> | 94 </body> |
| 95 </html> | 95 </html> |
| OLD | NEW |