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

Unified Diff: third_party/WebKit/LayoutTests/fast/images/imagemap-case.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-case.html
diff --git a/third_party/WebKit/LayoutTests/fast/images/imagemap-case.html b/third_party/WebKit/LayoutTests/fast/images/imagemap-case.html
deleted file mode 100644
index c47d372759f4951a063992f48e5d219f212b78f8..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/images/imagemap-case.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<body>
-<map name="navMap">
-<area shape=rect coords="0,0,100,100" href onclick="document.getElementById('res1').innerHTML = 'success';return false;">
-</map>
-<img border=2 width=100 height=100 usemap=#navmap ismap>
-
-<br>
-
-<map name="navmap2">
-<area shape=rect coords="0,0,100,100" href onclick="document.getElementById('res2').innerHTML = 'success';return false;">
-</map>
-<img border=2 width=100 height=100 usemap=#navMap2 ismap>
-
-<div id=res1></div>
-<div id=res2></div>
-
-<script>
- if (window.eventSender) {
- eventSender.mouseMoveTo(50, 50);
- eventSender.mouseDown();
- eventSender.mouseUp();
- eventSender.mouseMoveTo(50, 150);
- eventSender.mouseDown();
- eventSender.mouseUp();
- }
-</script>

Powered by Google App Engine
This is Rietveld 408576698