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

Unified Diff: LayoutTests/fast/dom/Attr/invalidate-nodelist-after-attr-setvalue-expected.txt

Issue 1158433004: Remove Attr child nodes (making Attr a Node, not a ContainerNode) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address feedback Created 5 years, 7 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/Attr/invalidate-nodelist-after-attr-setvalue-expected.txt
diff --git a/LayoutTests/fast/dom/Attr/invalidate-nodelist-after-attr-setvalue-expected.txt b/LayoutTests/fast/dom/Attr/invalidate-nodelist-after-attr-setvalue-expected.txt
deleted file mode 100644
index 8a374ca10702a9d4c502b2b55fef74aa934fd32b..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/Attr/invalidate-nodelist-after-attr-setvalue-expected.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-CONSOLE WARNING: Attr child nodes are deprecated and will be removed in M45, around August 2015. Please use 'Attr.value' instead.
-CONSOLE WARNING: Attr child nodes are deprecated and will be removed in M45, around August 2015. Please use 'Attr.value' instead.
-This tests setting the value of an attribute node after caching childNodes of the attribute node.
-The cache should be cleared and childNodes[0].data should return the new value.
-You should see PASS below:
-
-PASS nameAttrNode.childNodes.length is 1
-PASS nameAttrNode.childNodes[0] is oldValue
-PASS nameAttrNode.childNodes[0].data is "oldName"
-
-PASS nameAttrNode.value = 'newName'; nameAttrNode.value is "newName"
-PASS nameAttrNode.childNodes[0] is not oldValue
-PASS nameAttrNode.childNodes[0].data is "newName"
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698