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

Unified Diff: LayoutTests/accessibility/image-map2.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/accessibility/image-map2.html
diff --git a/LayoutTests/accessibility/image-map2.html b/LayoutTests/accessibility/image-map2.html
deleted file mode 100644
index 692239609bac7c027cc62543b3883a12d75833f5..0000000000000000000000000000000000000000
--- a/LayoutTests/accessibility/image-map2.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<html>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-</script>
-<body id="body">
-
- <div id="result"></div>
-
- <!-- Test image map -->
- <map id="apple" name="imagemap1">
- <area shape="rect" coords="10,10,133,72" href="http://www.apple.com" alt="Link1" />
- <area shape="rect" coords="12,74,134,88" href="http://www.apple.com" alt="Link2" />
- </map>
-
- <img src="resources/cake.png" border="0" align="left" usemap="#imagemap1" vspace="1">
-
-
- <script>
- if (window.accessibilityController) {
- var result = document.getElementById("result");
-
- var body = document.getElementById("body");
- body.focus();
- result.innerText += "Image map - test 2 - 2 Links (alt tags)\n";
- result.innerText += "----------------------\n";
- result.innerText += accessibilityController.focusedElement.attributesOfChildren() + "\n\n";
- }
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698