tor-browser

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

model-novalid.html (382B)


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