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

Unified Diff: LayoutTests/fast/dom/html-collections-named-getter-expected.txt

Issue 692993003: Named getter of HTMLAllCollection etc should be nullable (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@union-nullable
Patch Set: Created 6 years, 1 month 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/html-collections-named-getter-expected.txt
diff --git a/LayoutTests/fast/dom/html-collections-named-getter-expected.txt b/LayoutTests/fast/dom/html-collections-named-getter-expected.txt
index a189504b28d7c974e16e3fc8f479128c0ef1abb0..08a8f9a2a53e5218c1586ada6c4bb1494c2d64c1 100644
--- a/LayoutTests/fast/dom/html-collections-named-getter-expected.txt
+++ b/LayoutTests/fast/dom/html-collections-named-getter-expected.txt
@@ -12,6 +12,7 @@ PASS document.all['foo'].length is 2
PASS document.all['foo'][0] is elements[0]
PASS document.all['foo'][1] is elements[1]
PASS elements[0].parentNode.removeChild(elements[0]); document.all['foo'] is elements[1]
+PASS document.all['no-such-element'] is undefined.
form.elements
PASS form.elements instanceof HTMLFormControlsCollection is true
@@ -27,6 +28,7 @@ PASS form.elements['foo'][0] is elements[0]
PASS form.elements['foo'][1] is elements[1]
PASS form.removeChild(elements[0]); form.elements['foo'] is elements[1]
PASS removeTestElements(); form.elements.length is 0
+PASS form.elements['no-such-element'] is undefined.
select.options
PASS form.appendChild(createElementWithId('select', 'bar')); form.elements.length is 1
@@ -44,6 +46,7 @@ PASS select.options['foo'][1] is elements[1]
PASS select.removeChild(elements[0]); select.options['foo'] is elements[1]
PASS select.innerHTML = ''; select.options.length is 0
PASS removeTestElements(); form.elements.length is 0
+PASS select.options['no-such-element'] is undefined.
document.images
PASS document.images.length is 0
« no previous file with comments | « LayoutTests/fast/dom/html-collections-named-getter.html ('k') | LayoutTests/fast/dom/idl-union-type-unittest.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698