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

Unified Diff: third_party/WebKit/LayoutTests/fast/images/imagemap-nested-area.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 side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698