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><head>
2 <script>
3 function doe2(i) {
4 var x=document.getElementsByTagName('*');
5 document.body.setAttribute('style', 'display: inline; position: relative;');
6 document.body.offsetHeight;
7 document.getElementById('a').setAttribute('style', '');
8 document.getElementById('b').setAttribute('style', 'position: absolute;');
9 }
10 setTimeout(doe2,100);
11 </script>
12 </head>
14 <body>
15 <span id="b"></span>ع
16 <span id="a" style="position: absolute;">ع
17 <span style="position: absolute;"></span>
18 </span>
19 </body>
20 </html>