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>
4 function removestyles(i){
5 document.getElementsByTagName('*')[5].removeAttribute('style');
6 document.body.offsetHeight;
7 document.getElementsByTagName('*')[6].removeAttribute('style');
8 document.body.offsetHeight;
9 document.getElementsByTagName('*')[7].removeAttribute('style');
10 }
12 setTimeout(removestyles,300);
13 </script>
15 </head>
16 <body>
17 <div style="position: relative; width: 500px;">
18 <span style="position: absolute; -moz-column-count: 2;">
19 <span style=" position: absolute;">
20 <span style=" display: inline-block; ">m</span>
21 <input>
22 <input style="position: fixed;">m
23 </span>
24 </span>
25 </div>
26 </body>
27 </html>