Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <style>
5 body {
6 height: 50px;
7 -moz-column-count: 2;
8 }
9 .container {
10 height: 10px;
11 }
12 .overflow {
13 height: 100px;
14 }
15 .bb {
16 border-bottom: solid 4px magenta;
17 }
19 </style>
21 <script>
23 function boom()
24 {
25 document.getElementById("x").setAttribute("class", "");
26 document.getElementById("y").setAttribute("class", "bb");
27 }
29 </script>
30 </head>
32 <body onload="boom();">
33 <div class="container"><div class="overflow" id="x"></div></div>
34 <div id="y"></div>
35 <div class="container"><div class="overflow"></div></div>
36 </body>
38 </html>