Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <script>
7 function boom()
8 {
9 // Force frame construction
10 document.documentElement.offsetHeight;
12 // A dynamic change
13 document.getElementById("x").firstChild.data = "\u062A"
14 }
16 window.addEventListener("load", boom, false);
18 </script>
19 </head>
20 <body>
21 <div><span><span id="x">ۍB</span>C</span></div>
22 </body>
23 </html>