tor-browser

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

model-isvalid.html (481B)


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