300691-1c.html (327B)
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>