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

Unified Diff: LayoutTests/fast/dom/wrapper-classes.html

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/dom/wrapper-classes.html
diff --git a/LayoutTests/fast/dom/wrapper-classes.html b/LayoutTests/fast/dom/wrapper-classes.html
index d9841be1da6de9830655d26e3a458f124ca928bb..8d094f48cee076467adf32134bd040e010b063a7 100644
--- a/LayoutTests/fast/dom/wrapper-classes.html
+++ b/LayoutTests/fast/dom/wrapper-classes.html
@@ -84,7 +84,7 @@ function runTest()
test("document.implementation", "DOMImplementation");
test("root.attributes", "NamedNodeMap");
test("document.createNodeIterator(root, 0, null, false)", "NodeIterator");
- test("document.getElementsByTagName('div')", "NodeList");
+ test("document.getElementsByTagName('div')", "HTMLCollection");
test("document.createRange()", "Range");
test("document.createTextNode('')", "Text");
test("document.createTreeWalker(root, 0, null, false)", "TreeWalker");

Powered by Google App Engine
This is Rietveld 408576698