OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 .multicol { | 3 .multicol { |
4 -moz-column-width: 100px; | 4 -moz-column-width: 100px; |
5 -webkit-column-width: 100px; | 5 -webkit-column-width: 100px; |
6 column-width: 100px; | 6 column-width: 100px; |
7 column-fill: auto; | 7 column-fill: auto; |
8 -webkit-column-gap: 0; | 8 -webkit-column-gap: 0; |
9 -moz-column-gap: 0; | 9 -moz-column-gap: 0; |
10 column-gap: 0; | 10 column-gap: 0; |
(...skipping 28 matching lines...) Expand all Loading... |
39 line3<br> | 39 line3<br> |
40 line4<br> | 40 line4<br> |
41 line5<br> | 41 line5<br> |
42 line6<br> | 42 line6<br> |
43 <div class="block"></div> line7<br> | 43 <div class="block"></div> line7<br> |
44 line8<br> | 44 line8<br> |
45 <span class="relative">relative9</span><br> | 45 <span class="relative">relative9</span><br> |
46 line10<br> | 46 line10<br> |
47 line11<br> | 47 line11<br> |
48 line12<br> | 48 line12<br> |
49 <span class="opacity">opacity13</span><br> | 49 <!-- The extra inner span below forces the creation of a transparency layer
in Skia to work |
| 50 around optimizations that would cause blending differences between the
test and the |
| 51 expectation. --> |
| 52 <span class="opacity">opacity<span>13</span></span><br> |
50 line14 | 53 line14 |
51 </div> | 54 </div> |
52 | 55 |
53 RTL: | 56 RTL: |
54 <div class="multicol" dir="rtl"> | 57 <div class="multicol" dir="rtl"> |
55 line1<br> | 58 line1<br> |
56 line2<br> | 59 line2<br> |
57 line3<br> | 60 line3<br> |
58 line4<br> | 61 line4<br> |
59 line5<br> | 62 line5<br> |
60 line6<br> | 63 line6<br> |
61 <div class="block"></div> line7<br> | 64 <div class="block"></div> line7<br> |
62 line8<br> | 65 line8<br> |
63 <span class="relative">relative9</span><br> | 66 <span class="relative">relative9</span><br> |
64 line10<br> | 67 line10<br> |
65 line11<br> | 68 line11<br> |
66 line12<br> | 69 line12<br> |
67 <span class="opacity">opacity13</span><br> | 70 <!-- The extra inner span below forces the creation of a transparency layer
in Skia to work |
| 71 around optimizations that would cause blending differences between the
test and the |
| 72 expectation. --> |
| 73 <span class="opacity">opacity<span>13</span></span><br> |
68 line14 | 74 line14 |
69 </div> | 75 </div> |
OLD | NEW |