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