tor-browser

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

507487-1.html (888B)


      1 <!DOCTYPE html>
      2 <html>
      3 <!--
      4 https://bugzilla.mozilla.org/show_bug.cgi?id=507487
      5 -->
      6 <head>
      7 <style>
      8 #content > * {
      9  display:block; width:100px; height:100px; background: purple;
     10 }
     11 #content > teST {
     12  display:block; width:100px; height:100px; background: green;
     13 }
     14 
     15 #content > test {
     16  display:block; width:100px; height:100px; background: blue;
     17 }
     18 
     19 </style>
     20 <script>
     21  function f() {
     22    document.getElementById('content').appendChild(document.createElementNS("test", "test"));
     23    document.getElementById('content').appendChild(document.createElementNS("test", "teST"));
     24    document.getElementById('content').appendChild(document.createElementNS("http://www.w3.org/1999/xhtml", "test"));
     25    document.getElementById('content').appendChild(document.createElementNS("http://www.w3.org/1999/xhtml", "teST"));
     26  }
     27 </script>
     28 </head>
     29 <body onload="f();">
     30 <div id=content></div>
     31 </body>
     32 </html>