tor-browser

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

model-novalid.html (400B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset=utf-8>
      5  <title>&lt;dfn&gt;</title>
      6 </head>
      7 <body>
      8  <!-- not a block -->
      9  <dfn>text</dfn>
     10 
     11  <!-- cannot contain structured inline -->
     12  <p><dfn><ul><li>text</li></ul></dfn></p>
     13 
     14  <!-- cannot contain interactive if parent forbids interactive -->
     15  <p><a><dfn><a>text</a></dfn></a></p>
     16  <p><a><var><dfn><a>text</a></dfn></var></a></p>
     17 </body>
     18 </html>