OLD | NEW |
1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> | 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> |
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | 3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> |
4 <head> | 4 <head> |
5 <script> | 5 <script> |
6 | 6 |
7 var test = 1; | 7 var test = 1; |
8 var map1; | 8 var map1; |
9 var map2; | 9 var map2; |
10 var map3; | 10 var map3; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 <body onload="runTest()"> | 76 <body onload="runTest()"> |
77 <map name="mapName"><area shape="rect" coords="0,0,100,100" onclick="setResult('
0')" /></map> | 77 <map name="mapName"><area shape="rect" coords="0,0,100,100" onclick="setResult('
0')" /></map> |
78 <map name="mapname"><area shape="rect" coords="0,0,100,100" onclick="setResult('
1')" /></map> | 78 <map name="mapname"><area shape="rect" coords="0,0,100,100" onclick="setResult('
1')" /></map> |
79 <map name="mapname"><area shape="rect" coords="0,0,100,100" onclick="setResult('
2')" /></map> | 79 <map name="mapname"><area shape="rect" coords="0,0,100,100" onclick="setResult('
2')" /></map> |
80 <map name="mapname"><area shape="rect" coords="0,0,100,100" onclick="setResult('
3')" /></map> | 80 <map name="mapname"><area shape="rect" coords="0,0,100,100" onclick="setResult('
3')" /></map> |
81 <img src="resources/green.jpg" border="20" width="100" height="100" usemap="mapn
ame" ismap="ismap" onclick="setResult('img')" /> | 81 <img src="resources/green.jpg" border="20" width="100" height="100" usemap="mapn
ame" ismap="ismap" onclick="setResult('img')" /> |
82 <div>This tests image map behavior when there are multiple maps with the same na
me.</div> | 82 <div>This tests image map behavior when there are multiple maps with the same na
me.</div> |
83 <pre id="log" /> | 83 <pre id="log" /> |
84 </body> | 84 </body> |
85 </html> | 85 </html> |
OLD | NEW |