Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(476)

Side by Side Diff: third_party/WebKit/LayoutTests/images/image-map-multiple-xhtml.xhtml

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698