Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script type="text/javascript">
6 function boom()
7 {
8 var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
9 var fo = document.createElementNS("http://www.w3.org/2000/svg", "foreignObject");
10 fo.style.padding = "10em";
11 svg.appendChild(fo);
12 document.body.appendChild(svg);
13 document.body.offsetHeight;
15 var opt = document.createElementNS("http://www.w3.org/1999/xhtml", "span");
16 fo.appendChild(opt);
17 }
19 </script>
20 </head>
22 <body onload="boom();"></body>
24 </html>