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 13 matching lines...) Expand all Loading... |
24 .visible { | 24 .visible { |
25 visibility: visible; | 25 visibility: visible; |
26 } | 26 } |
27 .should-be-hidden { | 27 .should-be-hidden { |
28 background-color: red !important; | 28 background-color: red !important; |
29 } | 29 } |
30 .should-be-visible { | 30 .should-be-visible { |
31 background-color: green !important; | 31 background-color: green !important; |
32 } | 32 } |
33 .composited { | 33 .composited { |
34 -webkit-transform: translateZ(1px); | 34 transform: translateZ(1px); |
35 } | 35 } |
36 | 36 |
37 .visible-indicator { | 37 .visible-indicator { |
38 background-color: green; | 38 background-color: green; |
39 } | 39 } |
40 | 40 |
41 .hidden-indicator { | 41 .hidden-indicator { |
42 background-color: red; | 42 background-color: red; |
43 } | 43 } |
44 </style> | 44 </style> |
(...skipping 18 matching lines...) Expand all Loading... |
63 </div> | 63 </div> |
64 </div> | 64 </div> |
65 | 65 |
66 <div class="hidden container"> | 66 <div class="hidden container"> |
67 <div class="visible composited box should-be-visible"> | 67 <div class="visible composited box should-be-visible"> |
68 </div> | 68 </div> |
69 </div> | 69 </div> |
70 </div> | 70 </div> |
71 </body> | 71 </body> |
72 </html> | 72 </html> |
OLD | NEW |