| Index: LayoutTests/fast/replaced/image-map-alt-content.html
|
| diff --git a/LayoutTests/fast/replaced/image-map-alt-content.html b/LayoutTests/fast/replaced/image-map-alt-content.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9d22e647b7af3c3c84ab728573a50f2df0bdd917
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/replaced/image-map-alt-content.html
|
| @@ -0,0 +1,14 @@
|
| +<head>
|
| +</head>
|
| +<img id="image" height="100" width="100" src="" usemap="#map">
|
| +<map name="map"><area shape="poly" coords="0,0,0,100,100,100,100,0" href="javascript:void(document.getElementById('result').innerHTML='PASS: Area clicked.')"></map>
|
| +<p>crbug.com/466116: Image maps not working when alt content displayed. Click on the rectangle to test. </p>
|
| +<div id="result">FAIL: Area not clicked.</div>
|
| +<script>
|
| +if (window.testRunner) {
|
| + testRunner.dumpAsText();
|
| + eventSender.mouseMoveTo(50, 50);
|
| + eventSender.mouseDown();
|
| + eventSender.mouseUp();
|
| +}
|
| +</script>
|
|
|