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

Unified Diff: Source/core/dom/DataTransferItemList.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/DataTransferItemList.idl
diff --git a/Source/core/dom/DataTransferItemList.idl b/Source/core/dom/DataTransferItemList.idl
index 9b63b49cb94f3dc74968fb374858eee5d3d870db..88f28f8ffd450cf0a48992f59c923ba55bf70b9e 100644
--- a/Source/core/dom/DataTransferItemList.idl
+++ b/Source/core/dom/DataTransferItemList.idl
@@ -29,12 +29,11 @@
*/
[
- IndexedGetter,
CustomDeleteProperty,
ImplementationLacksVTable
] interface DataTransferItemList {
readonly attribute long length;
- DataTransferItem item([Default=Undefined] optional unsigned long index);
+ getter DataTransferItem item([Default=Undefined] optional unsigned long index);
void clear();
void add(File? file);

Powered by Google App Engine
This is Rietveld 408576698