tor-browser

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

model-isvalid.html (552B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset=utf-8>
      5  <title>&lt;del&gt;</title>
      6 </head>
      7 <body>
      8 
      9 
     10  <!-- can contain strictly inline while in strictly inline context -->
     11  <p><dfn>strictly inline
     12    <del>
     13      <em>text</em>
     14    </del>
     15  </dfn></p>
     16 
     17  <!-- can contain interactive if ancestor does not forbid it -->
     18  <p>paragraph
     19    <del>
     20      <a>link</a>
     21    </del>
     22  </p>
     23  <p><dfn>strictly inline
     24    <del>
     25      <a>link</a>
     26    </del>
     27  </dfn></p>
     28 
     29  <div><del><p>foo</p></del></div><!-- with flow content and flow parent -->
     30 
     31 </body>
     32 </html>