tor-browser

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

model-novalid.html (443B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset=utf-8>
      5  <title>&lt;h5&gt;</title>
      6 </head>
      7 <body>
      8  <!-- is not strictly inline -->
      9  <p><dfn>text 
     10    <h5>more text</h5>
     11  </dfn></p>
     12 
     13  <!-- is not structured inline -->
     14  <p>text
     15    <h5>more text</h5>
     16  </p>
     17 
     18  <!-- cannot contain blocks -->
     19  <h5>
     20    <p>p1</p>
     21    <p>p2</p>
     22  </h5>
     23 
     24  <!-- cannot contain structured inline -->
     25  <h5>text
     26    <ul><li>text</li></ul>
     27  </h5>
     28 </body>
     29 </html>