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

Unified Diff: LayoutTests/fast/dom/attribute-accessor.html

Issue 502333003: Not for commit: DOM attributes on prototype chains are not working correctly Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | Source/core/html/HTMLCollection.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/attribute-accessor.html
diff --git a/LayoutTests/fast/dom/attribute-accessor.html b/LayoutTests/fast/dom/attribute-accessor.html
new file mode 100644
index 0000000000000000000000000000000000000000..93734623be87ba1eb4e23a9e798553eb333a2a29
--- /dev/null
+++ b/LayoutTests/fast/dom/attribute-accessor.html
@@ -0,0 +1,13 @@
+<body>
+<script>
+e = document.createElement("div");
+console.log(e.children instanceof HTMLCollection); // true
+for (i in e.children) {
+ console.log(i); // length, item, namedItem
+}
+console.log(e.children.__proto__.hasOwnProperty("length")); // true
+console.log(e.children.__proto__.hasOwnProperty("item")); // true
+console.log(e.children.item(0)); // null (i.e., does not throw)
+console.log(e.children.length); // Uncaught TypeError: Illegal invocation
+</script>
+</body>
« no previous file with comments | « no previous file | Source/core/html/HTMLCollection.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698