tor-browser

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

model-isvalid.html (471B)


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