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

Side by Side Diff: LayoutTests/fast/replaced/image-map-alt-content.html

Issue 1094133004: Image maps should work for images with alt content (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 5 years, 7 months 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <head>
2 </head>
3 <img id="image" height="100" width="100" src="" usemap="#map">
4 <map name="map"><area shape="poly" coords="0,0,0,100,100,100,100,0" href="javasc ript:void(document.getElementById('result').innerHTML='PASS: Area clicked.')"></ map>
5 <p>crbug.com/466116: Image maps not working when alt content displayed. Click on the rectangle to test. </p>
6 <div id="result">FAIL: Area not clicked.</div>
7 <script>
8 if (window.testRunner) {
9 testRunner.dumpAsText();
10 eventSender.mouseMoveTo(50, 50);
11 eventSender.mouseDown();
12 eventSender.mouseUp();
13 }
14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698