Index: third_party/WebKit/LayoutTests/fast/dom/mutation-details-focus.html |
diff --git a/third_party/WebKit/LayoutTests/fast/dom/mutation-details-focus.html b/third_party/WebKit/LayoutTests/fast/dom/mutation-details-focus.html |
deleted file mode 100644 |
index ae929a6b014cd2e368e6a3289447d7b981c76377..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/dom/mutation-details-focus.html |
+++ /dev/null |
@@ -1,15 +0,0 @@ |
-<body> |
-<script src="../../resources/js-test.js"></script> |
-<script> |
-(function() { |
- (function() { |
- var theElement = document.createElement("details"); |
- document.body.appendChild(theElement); |
- theElement.addEventListener("DOMNodeRemovedFromDocument", function () { eventSender.keyDown("\t"); }, false); |
- theElement.parentNode.removeChild(theElement); |
- })(); |
- gc(); |
- debug("PASS unless crash"); |
-})(); |
-</script> |
-</body> |