tor-browser

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

model-novalid.html (409B)


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