726460-1.html (396B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <script> 6 7 function boom() 8 { 9 // Force frame construction 10 document.documentElement.offsetHeight; 11 12 // A dynamic change 13 document.getElementById("x").firstChild.data = "\u062A" 14 } 15 16 window.addEventListener("load", boom); 17 18 </script> 19 </head> 20 <body> 21 <div><span><span id="x">ۍB</span>C</span></div> 22 </body> 23 </html>