tor-browser

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

507762-1.html (440B)


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