OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script> |
| 3 onload = function() { |
| 4 document.body.offsetTop; // trigger layout |
| 5 document.getElementById('elm').className = "x"; |
| 6 } |
| 7 </script> |
| 8 <style> |
| 9 .x::before { display:block; -webkit-column-span:all; background:yellow; cont
ent:".........."; } |
| 10 </style> |
| 11 <p>Test adding a ::before pseudo element.</p> |
| 12 <p>There should be two rectangles with identical sizes below. The first one shou
ld be yellow |
| 13 with some dots inside. The second one should be blue with nothing inside.</p
> |
| 14 <div style="-webkit-columns:4; line-height:100px; background:blue;"> |
| 15 <span id="elm"> </span> |
| 16 </div> |
OLD | NEW |