tor-browser

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

model-novalid.html (834B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset=utf-8>
      5  <title>&lt;del&gt;</title>
      6 </head>
      7 <body>
      8  <!-- can contain inline while in inline context -->
      9  <p>paragraph
     10    <del>
     11      <em>some</em> <ul><li>inline</li></ul> content
     12    </del>
     13  </p>
     14 
     15  <!-- can contain strictly inline while in strictly inline context -->
     16  <p><dfn>strictly inline
     17    <del>
     18      <em>text</em>
     19    </del>
     20  </dfn></p>
     21 
     22  <!-- can contain blocks while in block context -->
     23  <del>
     24    <p>text</p>
     25  </del>
     26 
     27  <!-- can contain interactive if ancestor does not forbid it -->
     28  <p>paragraph
     29    <del>
     30      <a>link</a>
     31    </del>
     32  </p>
     33  <p><dfn>strictly inline
     34    <del>
     35      <a>link</a>
     36    </del>
     37  </dfn></p>
     38  <del>
     39    <p><a>link</a></p>
     40  </del>
     41 
     42  <span><del><p>foo</p></del></span><!-- with flow content and phrasing parent -->
     43 
     44 </body>
     45 </html>