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

Unified Diff: LayoutTests/fast/dom/htmlallcollection-enumerated-properties.html

Issue 1017733003: [DO NOT LAND] Set @@toStringTag for DOM object prototypes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: More test rebaselines Created 5 years, 9 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/htmlallcollection-enumerated-properties.html
diff --git a/LayoutTests/fast/dom/htmlallcollection-enumerated-properties.html b/LayoutTests/fast/dom/htmlallcollection-enumerated-properties.html
index 061d379467d7a6060d5835dbb2a1d16b386ef17c..2894992ed802a0a36b1339c6d1a6c1b469582824 100644
--- a/LayoutTests/fast/dom/htmlallcollection-enumerated-properties.html
+++ b/LayoutTests/fast/dom/htmlallcollection-enumerated-properties.html
@@ -26,7 +26,7 @@ description("This tests verifies the enumerated properties on HTMLAllCollection
var htmlAllCollection = document.all;
shouldBe("htmlAllCollection.__proto__", "HTMLAllCollection.prototype");
-shouldBe("htmlAllCollection.__proto__.__proto__", "HTMLCollection.prototype");
+shouldBe("htmlAllCollection.__proto__.__proto__", "Object.prototype");
shouldBe("htmlAllCollection.length", "35");
// As per http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#htmlallcollection-0:

Powered by Google App Engine
This is Rietveld 408576698