tor-browser

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

model-novalid.html (2006B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset=utf-8>
      5  <title>&lt;area&gt;</title>
      6 </head>
      7 <body>
      8  <map name="map1">
      9    <!-- default has no coords -->
     10    <area alt="text" shape="default" coords="1,2">
     11 
     12    <!-- rect, circle, poly must have coords -->
     13    <area alt="text" shape="rect">
     14    <area alt="text" shape="circle">
     15    <area alt="text" shape="poly">
     16 
     17    <!-- rect must have four coords -->
     18    <area alt="text" shape="rect" coords="1,2,3">
     19    <area alt="text" shape="rect" coords="	1  ,  2  , 	3 	,  4  , 5, 6">
     20    <area alt="text" coords="1,2,3,4,5,6">
     21    <area alt="text" coords="	1  ,  2  , 	3 	,  4  ,">
     22 
     23    <!-- circle must have three coords -->
     24    <area alt="text" shape="circle" coords="1,2">
     25    <area alt="text" shape="circle" coords="	1  ,  2  , 	3  , 4 ">
     26 
     27    <!-- poly must have coords in pairs, and at least 3 sets -->
     28    <area alt="text" shape="poly" coords="1,2,3,4,5">
     29    <area alt="text" shape="poly" coords="1,2,3,4,5,6,7,">
     30    <area alt="text" shape="poly" coords="	1  ,  2  , 	3 ,4  ,5,
     31                                           6  ,7 ,8,  ,9  ">
     32 
     33    <!-- coords must be int or percent, +/- allowed -->
     34    <area alt="text" shape="rect" coords="1.5,2,3,4">
     35    <area alt="text" shape="rect" coords="1,2px,3,4">
     36    <area alt="text" shape="rect" coords="1 %,2,3,4">
     37    <area alt="text" shape="rect" coords="1,- 2,3,4">
     38    <area alt="text" shape="rect" coords="1, 2,+ 3,4">
     39 
     40    <area alt="text" shape="circle" coords="1.5,2,3">
     41    <area alt="text" shape="circle" coords="1,2px,3">
     42    <area alt="text" shape="circle" coords="1 %,2,3">
     43    <area alt="text" shape="circle" coords="1,- 2,3">
     44    <area alt="text" shape="circle" coords="1, 2,+ 3">
     45 
     46    <area alt="text" shape="poly" coords="5,6,1.5,2,3,4">
     47    <area alt="text" shape="poly" coords="5,6,1,2px,3,4">
     48    <area alt="text" shape="poly" coords="5,6,1 %,2,3,4">
     49    <area alt="text" shape="poly" coords="5,6,1,- 2,3,4">
     50    <area alt="text" shape="poly" coords="5,6,1, 2,+ 3,4">
     51  </map>
     52 </body>
     53 </html>