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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/Attr/set-attr-value-no-DOMSubtreeModified.html

Issue 2781993003: Move tests for Attr interface to LayoutTests/dom/attr/. (Closed)
Patch Set: Created 3 years, 9 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: third_party/WebKit/LayoutTests/fast/dom/Attr/set-attr-value-no-DOMSubtreeModified.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/Attr/set-attr-value-no-DOMSubtreeModified.html b/third_party/WebKit/LayoutTests/fast/dom/Attr/set-attr-value-no-DOMSubtreeModified.html
deleted file mode 100644
index 9df04e9823f05a7257a052f6120b0c72ae3086d0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/Attr/set-attr-value-no-DOMSubtreeModified.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<script src="../../../resources/js-test.js"></script>
-<div id="testDiv"></div>
-<script>
- description("Tests that setting Attr.value does not fire a DOMSubtreeModified event.");
-
- var testDiv = document.getElementById("testDiv");
- var wasDOMSubtreeModifiedFired = false;
- testDiv.attributes[0].addEventListener("DOMSubtreeModified", function() {
- wasDOMSubtreeModifiedFired = true;
- }, false);
-
- shouldBeFalse("wasDOMSubtreeModifiedFired");
- testDiv.attributes[0].value = "testDiv2";
- shouldBeFalse("wasDOMSubtreeModifiedFired");
-</script>

Powered by Google App Engine
This is Rietveld 408576698