Index: third_party/WebKit/LayoutTests/fast/images/imagemap-nested-area.html |
diff --git a/third_party/WebKit/LayoutTests/fast/images/imagemap-nested-area.html b/third_party/WebKit/LayoutTests/fast/images/imagemap-nested-area.html |
deleted file mode 100644 |
index 642e4e89879a626404e9d901d23a568f201134a5..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/images/imagemap-nested-area.html |
+++ /dev/null |
@@ -1,46 +0,0 @@ |
-<html> |
-<head> |
- <script> |
- function pressTabKey() |
- { |
- if (window.eventSender) |
- eventSender.keyDown("\t"); |
- } |
- |
- function test() { |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
- var before = document.getElementById("before"); |
- var area = document.getElementById("area"); |
- |
- before.focus(); |
- pressTabKey(); |
- |
- if (document.activeElement == area) |
- res.innerHTML = "Test Passed"; |
- } |
- </script> |
-</head> |
- |
-<body onload="test()"> |
- This tests that pressing Tab focuses areas in an image map even if they're not direct children. |
- |
- <div id="res">Test Failed</div> |
- |
- <div id="before" tabIndex=0 /> |
- |
- <div> |
- <map name="imagemap"> |
- <div> |
- <area id="area" shape="rect" coords="0,0,128,128" href="#dummy" /> |
- </div> |
- </map> |
- <img width="128" height="128" usemap="#imagemap" ismap /> |
- </div> |
- |
- <div id="after" tabIndex=0 /> |
- |
-</body> |
-</head> |
-</html> |