Index: LayoutTests/fast/dom/normalize-attributes-mutation-event-crash.html |
diff --git a/LayoutTests/fast/dom/normalize-attributes-mutation-event-crash.html b/LayoutTests/fast/dom/normalize-attributes-mutation-event-crash.html |
deleted file mode 100644 |
index 815ec67d05a86d30e462bfe8365dd4c4bbf7c666..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/normalize-attributes-mutation-event-crash.html |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<meta charset="utf-8"> |
-<script src="../../resources/js-test.js"></script> |
-</head> |
-<body> |
-<script> |
- |
-description("Tests that mutating an elements attribute map during DOMSubtreeModified event dispatch doesn't break Node.normalize. Passes if it doesn't crash."); |
- |
-var el = document.createElement('div') |
-el.setAttribute('a', 'a') |
-el.setAttribute('b', 'b') |
-el.attributes[1].appendChild(document.createTextNode('')) |
-el.attributes[1].addEventListener('DOMSubtreeModified', function() { el.removeAttribute('b') }, false) |
-el.normalize() |
- |
-</script> |
-</body> |
-</html> |