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

Unified Diff: LayoutTests/fast/forms/form-collection-radio-node-list-expected.txt

Issue 119063002: Have HTMLFormElement's named getter return a RadioNodeList. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update expected output for inspector/console/console-format-collections Created 7 years 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/forms/form-collection-radio-node-list-expected.txt
diff --git a/LayoutTests/fast/forms/form-collection-radio-node-list-expected.txt b/LayoutTests/fast/forms/form-collection-radio-node-list-expected.txt
index 878f04d0f09cd554d95fc1206259489f52456afa..6c32afa3a2a3972b33d4afb132b887ba0dcb1138 100644
--- a/LayoutTests/fast/forms/form-collection-radio-node-list-expected.txt
+++ b/LayoutTests/fast/forms/form-collection-radio-node-list-expected.txt
@@ -50,6 +50,18 @@ PASS radioNodeList2[1].type is 'email'
PASS radioNodeList2[2].type is 'reset'
After changing the id
PASS radioNodeList2.length is 2
+After resetting the id
+PASS radioNodeList2.length is 3
+
+Check RadioNodeList created from a form element
+PASS radioNodeList3.length is 3
+PASS radioNodeList3[0].type is 'text'
+PASS radioNodeList3[1].type is 'email'
+PASS radioNodeList3[2].type is 'reset'
+After changing the id
+PASS radioNodeList3.length is 2
+After resetting the id
+PASS radioNodeList3.length is 3
Check that object element also reflects in RadioNodeList.
PASS radioNodeList.length is 5

Powered by Google App Engine
This is Rietveld 408576698