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 <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html>
3 <head>
4 <style type="text/css">
6 #relleft {
7 float: left;
8 width: 290px;
9 margin: 15px 0 0 0;
10 }
12 #fl:first-line { }
14 #cols { -moz-column-width: 4503599627370497mm; }
16 </style>
18 <script type="text/javascript">
20 function boom()
21 {
22 document.getElementById("x").setAttribute("id", "cols");
23 document.getElementById("fl").firstChild.splitText(1);
24 }
26 </script>
27 </head>
29 <body onload="boom();">
30 <div id="x"><div id="relleft"></div><div id="fl">
31 a b c d</div></div>
32 </body>
33 </html>