tor-browser

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

model-isvalid.html (511B)


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