tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

824719.html (635B)


      1 <!DOCTYPE html>
      2 <html>
      3 <div id='console'></div>
      4 <div id='parentDiv'>
      5 <div id='right-to-left1' dir=auto class=testElement>
      6 <input type=text value="a">a
      7 </div>
      8 <div id='right-to-left2' dir=auto class=testElement>
      9 </div>
     10 </div>
     11 
     12 <script type="text/javascript"> 
     13 
     14 document.getElementById("right-to-left2").appendChild(document.createElement("p"))
     15 var test5=document.getElementById("right-to-left1")
     16 var test6=document.getElementById("console").appendChild(document.createElement("dl"))
     17 
     18 test6.appendChild(document.createElement("img"))
     19 
     20 test5.remove()
     21 test5.innerHTML=''
     22 test5.appendChild(test6.cloneNode(true))
     23 </script>
     24 
     25 </body>
     26 </html>