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

Unified Diff: LayoutTests/fast/dom/attribute-change-on-mutate.html

Issue 452093003: Do not fire a DOMSubtreeModified event when Attr.value attribute is set (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix typo Created 6 years, 4 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/fast/dom/attribute-change-on-mutate.html
diff --git a/LayoutTests/fast/dom/attribute-change-on-mutate.html b/LayoutTests/fast/dom/attribute-change-on-mutate.html
deleted file mode 100644
index 7572997446a0dbe7f0497587dd83214664a0105a..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/attribute-change-on-mutate.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-
-window.onload = function()
-{
- attr = document.createAttribute("attr");
- attr.appendChild(document.createTextNode("FAIL"));
- attr.addEventListener("DOMSubtreeModified", function () { document.body.innerHTML = this.value }, false);
- attr.value = "PASS: Mutation events delayed during Attr modification.";
-}
-</script>

Powered by Google App Engine
This is Rietveld 408576698