Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <html>
2 <head>
3 <style type="text/css">
5 body, p {
6 display: table;
7 position: absolute;
8 }
10 </style>
12 <script type="text/javascript">
14 function boom()
15 {
16 var n = document.getElementById("n");
17 var b = document.body;
18 var next = n.nextSibling;
19 b.removeChild(n);
20 b.insertBefore(n, next);
21 }
23 </script>
24 </head>
26 <body onload="boom();">
27 <div>A B</div>
28 <p id="n">C D</p>
29 </body>
31 </html>