tor-browser

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

model-isvalid.html (638B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset=utf-8>
      5  <title>&lt;map&gt;</title>
      6 </head>
      7 <body>
      8  <!-- is block, contains blocks and <area> -->
      9  <map class="class" id="id" name="id" lang="en">
     10    <h2>header</h2>
     11    <p><area alt="text" href='foo' coords="1,2,3,4">p</p>
     12    <p>text</p>
     13    <p><area alt="text" href='foo' coords="3,2,5,4">p</p>
     14    <p>text2</p>
     15  </map>
     16 
     17  <!-- can contain interactive -->
     18  <map id='foo' name="foo">
     19    <p><a>text</a></p>
     20    <p><area alt="text" href='foo' coords="3,2,5,4">p</p>
     21  </map>
     22 
     23  <!-- map with flow content and flow parent -->
     24  <div><map name=foo><p>foo</p></map></div>
     25 
     26 </body>
     27 </html>