tor-browser

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

model-isvalid.html (548B)


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