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