Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <textarea id="t"></textarea>
5 <script>
6 document.getElementById("t").appendChild(document.createTextNode("abcd"));
7 // Flush reflow
8 document.body.offsetWidth;
9 document.getElementById("t").appendChild(document.createTextNode("efgh"));
10 </script>
11 </body>
12 </html>