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

Unified Diff: Source/core/dom/DOMNamedFlowCollection.idl

Issue 14751005: Support for latest WebIDL for indexed property getters. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: do not generate enumerator in case of WebKitCSSKeyframesRule Created 7 years, 8 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: Source/core/dom/DOMNamedFlowCollection.idl
diff --git a/Source/core/dom/DOMNamedFlowCollection.idl b/Source/core/dom/DOMNamedFlowCollection.idl
index 2e3c353744536e4bda7766f293679bdec98b71ed..f3913321c33a4711d6963ee05481419ccc1d4cc2 100644
--- a/Source/core/dom/DOMNamedFlowCollection.idl
+++ b/Source/core/dom/DOMNamedFlowCollection.idl
@@ -31,10 +31,9 @@
Conditional=CSS_REGIONS,
EnabledAtRuntime=cssRegions,
InterfaceName=WebKitNamedFlowCollection,
- IndexedGetter,
ImplementationLacksVTable
] interface DOMNamedFlowCollection {
readonly attribute unsigned long length;
- NamedFlow item(unsigned long index);
+ getter NamedFlow item(unsigned long index);
getter NamedFlow namedItem(DOMString name);
};

Powered by Google App Engine
This is Rietveld 408576698