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

Side by Side Diff: third_party/WebKit/LayoutTests/images/imagemap-scroll.html

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 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 function log(message) 4 function log(message)
5 { 5 {
6 var element = document.createElement("p"); 6 var element = document.createElement("p");
7 element.appendChild(document.createTextNode(message)); 7 element.appendChild(document.createTextNode(message));
8 document.getElementById("results").appendChild(element); 8 document.getElementById("results").appendChild(element);
9 } 9 }
10 function runTest() 10 function runTest()
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 <div style="height:5000px"></div> 44 <div style="height:5000px"></div>
45 <map name="imagemap"> 45 <map name="imagemap">
46 <area id="area" shape="rect" coords="0,0,128,128" href="#dummy"> 46 <area id="area" shape="rect" coords="0,0,128,128" href="#dummy">
47 </map> 47 </map>
48 <img src="resources/mu.png" width="128" height="128" usemap="#imagemap" ismap> 48 <img src="resources/mu.png" width="128" height="128" usemap="#imagemap" ismap>
49 <div style="height:5000px"></div> 49 <div style="height:5000px"></div>
50 <div> 50 <div>
51 </body> 51 </body>
52 </head> 52 </head>
53 </html> 53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698