Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / dynamic / spanner-becomes-float.html
bloba8cf8bca2e83d9e5979f806c3400e78696e33b91
1 <!DOCTYPE html>
2 <p>Set the float property on a spanner so that it ceases to be a spanner.</p>
3 <p>There should be three blue <em>squares</em> below.</p>
4 <div style="-webkit-columns:3; -webkit-column-gap:0; width:600px;">
5 <div id="elm" style="-webkit-column-span:all; width:100px; height:300px; background:blue;"></div>
6 </div>
7 <script>
8 document.body.offsetTop;
9 document.getElementById("elm").style.cssFloat = "left";
10 </script>