tor-browser

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

model-novalid.html (606B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset=utf-8>
      5  <title>&lt;samp&gt;</title>
      6 </head>
      7 <body>
      8  <!-- is structured inline -->
      9  <p><samp class="class" lang="en">text</samp></p>
     10 
     11  <!-- is strictly inline -->
     12  <p><dfn><samp class="class" lang="en">text</samp></dfn></p>
     13 
     14  <!-- can be empty -->
     15  <p>text <samp></samp></p>
     16  <p>text <dfn><samp></samp></dfn></p>
     17 
     18  <!-- can contain interactive -->
     19  <p><samp><a>text</a></samp></p>
     20  <p><dfn><samp><a>text</a></samp></dfn></p>
     21 
     22  <!-- cannot contain structured inline -->
     23  <p><samp>text <ul><li>list</li></ul> <em>elem</em></samp></p>
     24 </body>
     25 </html>