Index: third_party/WebKit/LayoutTests/fast/dom/HTMLAnchorElement/remove-href-from-focused-anchor.html |
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLAnchorElement/remove-href-from-focused-anchor.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLAnchorElement/remove-href-from-focused-anchor.html |
deleted file mode 100644 |
index c2b2c9892beae1166a546f4a3b32119b1dbd5bca..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLAnchorElement/remove-href-from-focused-anchor.html |
+++ /dev/null |
@@ -1,18 +0,0 @@ |
-<!DOCTYPE html> |
-<body> |
-<a href="javascript:" id="target">link</a> |
-<script src="../../../resources/js-test.js"></script> |
-<script> |
-jsTestIsAsync = true; |
-var target = document.getElementById('target'); |
-target.focus(); |
-shouldBe('document.activeElement', 'target'); |
-debug('Remove href.'); |
-window.onload = function() { |
- target.removeAttribute('href'); |
- shouldBe('document.activeElement', 'document.body'); |
- target.remove(); |
- finishJSTest(); |
-}; |
-</script> |
-</body> |