Wed, 31 Dec 2014 06:55:46 +0100
Added tag TORBROWSER_REPLICA for changeset 6474c204b198
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <script>
5 function boom()
6 {
7 document.getElementById("div1").appendChild(document.getElementById("div2"));
8 }
10 </script>
12 <style type="text/css">
14 #s1, #s2 {
15 font: 8pt arial;
16 }
18 #div1 #s1, #div1 #s2 {
19 font-size: 20pt;
20 }
22 </style>
23 </head>
25 <body onload="boom();">
27 <div id="div1"></div>
28 <div id="div2"><span id="s1"><span id="s2">foo</span></span></div>
30 </body>
31 </html>