tor-browser

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

507762-4.html (397B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <style>
      5 div {
      6 background-color: red;
      7 }
      8 div[dir=ltr] 
      9 {background-color: green !important;
     10 }
     11 </style>
     12 <script>
     13 function f() {
     14 var elem = document.createElement("div");
     15 elem.setAttribute("dir","LTR");
     16 elem.appendChild(document.createTextNode("text"));
     17 document.getElementsByTagName("body")[0].appendChild(elem); }
     18 </script>
     19 </head>
     20 <body onload="f();">
     21 </body>
     22 </html>