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

Side by Side Diff: Source/core/html/HTMLAllCollection.idl

Issue 1220883007: [dom] support iterable<> NodeList (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2014 Samsung Electronics. All rights reserved. 3 * Copyright (C) 2014 Samsung Electronics. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 25 matching lines...) Expand all
36 // FIXME: length and 'getter' should be inherited from HTMLCollection. 36 // FIXME: length and 'getter' should be inherited from HTMLCollection.
37 readonly attribute unsigned long length; 37 readonly attribute unsigned long length;
38 [ImplementedAs=item] getter Element (unsigned long index); 38 [ImplementedAs=item] getter Element (unsigned long index);
39 // FIXME: The custom item() implementation may return a NodeList, but the 39 // FIXME: The custom item() implementation may return a NodeList, but the
40 // spec has a (HTMLCollection or Element)? item(DOMString name) method. 40 // spec has a (HTMLCollection or Element)? item(DOMString name) method.
41 [Custom] Element? item([Default=Undefined] optional unsigned long index); 41 [Custom] Element? item([Default=Undefined] optional unsigned long index);
42 // FIXME: 42 // FIXME:
43 // FIXME: namedItem() should be a legacycaller. crbug.com/465009 43 // FIXME: namedItem() should be a legacycaller. crbug.com/465009
44 // FIXME: namedItem() should return an (HTMLCollection or Element)? union. 44 // FIXME: namedItem() should return an (HTMLCollection or Element)? union.
45 [ImplementedAs=namedGetter] getter (NodeList or Element)? namedItem(DOMStrin g name); 45 [ImplementedAs=namedGetter] getter (NodeList or Element)? namedItem(DOMStrin g name);
46 iterable<Element>;
jsbell 2015/07/01 18:00:30 I don't actually see iterable<> on HTMLCollection
46 }; 47 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698