tor-browser

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

model-isvalid.html (503B)


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