tor-browser

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

dl-isvalid.html (1942B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <title>valid dl</title>
      4 <template><dl><dt>text<dd>text</dl></template> <!-- parent-template-in-head -->
      5 <body>
      6 <dl><dt>text<dd>text</dl> <!-- basic -->
      7 <dl></dl> <!-- empty -->
      8 <dl><dt><dd></dl> <!-- empty-dt-dd -->
      9 <dl><dt>1<dd>a<dt>2<dd>a<dd>b<dt>3<dt>4<dt>5<dd>a</dl> <!-- multiple-groups -->
     10 <dl><dt>text<dd><header>text</header></dl> <!-- header-in-dd -->
     11 <dl><dt>text<dd><footer>text</footer></dl> <!-- footer-in-dd -->
     12 <dl><dt>text<dd><article><h2>text</h2></article></dl> <!-- article-in-dd -->
     13 <dl><dt>text<dd><aside><h2>text</h2></aside></dl> <!-- aside-in-dd -->
     14 <dl><dt>text<dd><nav><h2>text</h2></nav></dl> <!-- nav-in-dd -->
     15 <dl><dt>text<dd><section><h2>text</h2></section></dl> <!-- section-in-dd -->
     16 <dl><dt>text<dd><h1>text</h1></dl> <!-- h1-in-dd -->
     17 <dl><dt>text<dd><h2>text</h2></dl> <!-- h2-in-dd -->
     18 <dl><dt>text<dd><h3>text</h3></dl> <!-- h3-in-dd -->
     19 <dl><dt>text<dd><h4>text</h4></dl> <!-- h4-in-dd -->
     20 <dl><dt>text<dd><h5>text</h5></dl> <!-- h5-in-dd -->
     21 <dl><dt>text<dd><h6>text</h6></dl> <!-- h6-in-dd -->
     22 <dl><dt><p>1<p>1<dd>a</dl> <!-- p-in-dt -->
     23 <dl><dt><dl><dt>1<dd>a</dl><dd>b</dl> <!-- dl-in-dt -->
     24 <dl><dt>1<dd><dl><dt>2<dd>a</dl></dl> <!-- dl-in-dd -->
     25 <dl><dt><a href='#'>1</a><dd><a href='#'>a</a></dl> <!-- interactive -->
     26 <dl><script></script></dl> <!-- script -->
     27 <dl><dt>1</dt><script></script><dd>a</dl> <!-- dt-script-dd -->
     28 <dl><dt>1</dt><template></template><dd>a</dl> <!-- dt-template-dd -->
     29 <dl><div><dt>1<dd>a</div></dl> <!-- div-basic -->
     30 <dl><div><dt>1<dd>a</div><script></script></dl> <!-- div-script -->
     31 <dl><div><dt>1</dt><script></script><dd>a</div></dl> <!-- div-script-2 -->
     32 <dl><div><dt>1<dd>a</div><template></template></dl> <!-- div-template -->
     33 <dl><div><dt>1</dt><template></template><dd>a</div></dl> <!-- div-template-2 -->
     34 <dl><div><dt>1<dd>a</div><div><dt>2<dd>a<dd>b</div><div><dt>3<dt>4<dt>5<dd>a</div></dl> <!-- div-multiple-groups -->