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

Side by Side 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, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/html/HTMLCollection.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <body>
2 <script>
3 e = document.createElement("div");
4 console.log(e.children instanceof HTMLCollection); // true
5 for (i in e.children) {
6 console.log(i); // length, item, namedItem
7 }
8 console.log(e.children.__proto__.hasOwnProperty("length")); // true
9 console.log(e.children.__proto__.hasOwnProperty("item")); // true
10 console.log(e.children.item(0)); // null (i.e., does not throw)
11 console.log(e.children.length); // Uncaught TypeError: Illegal invocation
12 </script>
13 </body>
OLDNEW
« 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