OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 .container { width:120px; position: absolute; } | 3 .container { width:120px; position: absolute; } |
4 .multicol { -moz-column-width:50px; -moz-column-gap:10px; -webkit-column-width:5
0px; -webkit-column-gap:10px; column-width:50px; column-gap:10px; column-fill:au
to; height:150px; border:5px solid black; } | 4 .multicol { -moz-column-width:50px; -moz-column-gap:10px; -webkit-column-width:5
0px; -webkit-column-gap:10px; column-width:50px; column-gap:10px; column-fill:au
to; height:150px; border:5px solid black; } |
5 .block { width:50px; height:50px } | 5 .block { width:50px; height:50px } |
6 .block:hover { background-color: maroon !important; } | 6 .block:hover { background-color: maroon !important; } |
7 .layer { height:200px; width:50px } | 7 .layer { height:200px; width:50px } |
8 .line2 { position: absolute; top: 343px; left: 8px; } | 8 .line2 { position: absolute; top: 343px; left: 8px; } |
9 .pos1 { left: 10px; top: 10px; } | 9 .pos1 { left: 10px; top: 10px; } |
10 .pos2 { left: 150px; top: 10px; } | 10 .pos2 { left: 150px; top: 10px; } |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 <div class="block" style="background-color:black"></div> | 54 <div class="block" style="background-color:black"></div> |
55 </div> | 55 </div> |
56 </div> | 56 </div> |
57 | 57 |
58 <div class="container pos4"> | 58 <div class="container pos4"> |
59 Opacity: | 59 Opacity: |
60 | 60 |
61 <div class="multicol"> | 61 <div class="multicol"> |
62 <div class="block" style="background-color:black"></div> | 62 <div class="block" style="background-color:black"></div> |
63 <div style="opacity:0.99;" class="layer"> | 63 <div style="opacity:0.99;" class="layer"> |
64 <div class="block" style="background-color: #0000f0"></div> | 64 <!-- The extra s below force the creation of transparency layers in Skia t
o work |
65 <div class="block" style="background-color: #0000d0"></div> | 65 around optimizations that would cause blending differences between the test
and the |
66 <div class="block" style="background-color: #0000b0"></div> | 66 expectation. --> |
67 <div class="block" style="background-color: #000090"></div> | 67 <div class="block" style="background-color: #0000f0"> </div> |
| 68 <div class="block" style="background-color: #0000d0"> </div> |
| 69 <div class="block" style="background-color: #0000b0"> </div> |
| 70 <div class="block" style="background-color: #000090"> </div> |
68 </div> | 71 </div> |
69 <div class="block" style="background-color:black"></div> | 72 <div class="block" style="background-color:black"></div> |
70 </div> | 73 </div> |
71 </div> | 74 </div> |
OLD | NEW |