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>
2 <head>
3 <script type="text/javascript">
4 function boom()
5 {
6 var img = document.createElement("img");
7 document.getElementById("g").appendChild(img);
8 img.width = 1;
9 }
11 </script>
13 <style type="text/css">
15 .margin {
16 margin: 1em 0;
17 }
19 .dd:before {
20 white-space: pre;
21 line-height: 0;
22 content: "b";
23 }
25 </style>
27 </head>
29 <body onload="boom();">
30 <div style="-moz-column-count: 2;">
31 X
32 <div class="margin">y</div>
33 <span><span id="g"></span>­<div class="margin"></div><span class="dd"><div></div></span></span>
34 </div>
35 </body>
37 </html>