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

Unified Diff: LayoutTests/fast/js/constructor-expected.txt

Issue 143453010: Have getElementsByClassName() / getElementsByTagName*() return an HTMLCollection (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Null HTMLCollection handling Created 6 years, 11 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/js/constructor-expected.txt
diff --git a/LayoutTests/fast/js/constructor-expected.txt b/LayoutTests/fast/js/constructor-expected.txt
index ea1a404012051a8210d816d695fbab6534086c2b..7259b68e198955853c035bee85abacee5990762e 100644
--- a/LayoutTests/fast/js/constructor-expected.txt
+++ b/LayoutTests/fast/js/constructor-expected.txt
@@ -12,8 +12,8 @@ PASS window.document.body.constructor === window.HTMLBodyElement is true
PASS window.document.body.constructor.prototype === window.HTMLBodyElement.prototype is true
PASS window.document.body.constructor.prototype.__proto__ === window.HTMLBodyElement.prototype.__proto__ is true
PASS window.document.body.constructor.prototype.__proto__ === window.HTMLElement.prototype is true
-PASS nodeList.constructor === window.NodeList is true
-PASS nodeList.constructor.prototype === window.NodeList.prototype is true
+PASS htmlCollection.constructor === window.HTMLCollection is true
+PASS htmlCollection.constructor.prototype === window.HTMLCollection.prototype is true
PASS mutationEvent.constructor === window.MutationEvent is true
PASS mutationEvent.constructor.prototype.__proto__ === window.Event.prototype is true
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698