summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/events/Event.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/events/Event.idl')
-rw-r--r--chromium/third_party/WebKit/Source/core/events/Event.idl13
1 files changed, 6 insertions, 7 deletions
diff --git a/chromium/third_party/WebKit/Source/core/events/Event.idl b/chromium/third_party/WebKit/Source/core/events/Event.idl
index 3f8e80b0523..58a832a3a62 100644
--- a/chromium/third_party/WebKit/Source/core/events/Event.idl
+++ b/chromium/third_party/WebKit/Source/core/events/Event.idl
@@ -20,6 +20,7 @@
// Introduced in DOM Level 2:
[
+ WillBeGarbageCollected,
Custom=Wrap,
EventConstructor,
] interface Event {
@@ -67,11 +68,9 @@
void stopImmediatePropagation();
// IE Extensions
- readonly attribute EventTarget srcElement;
- [ImplementedAs=legacyReturnValue, DeprecateAs=EventReturnValue] attribute boolean returnValue;
- attribute boolean cancelBubble;
-
- [RuntimeEnabled=ShadowDOM] readonly attribute NodeList path;
-
- [Custom=Getter] readonly attribute Clipboard clipboardData;
+ [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement;
+ [CallWith=ExecutionContext, ImplementedAs=legacyReturnValue, MeasureAs=EventReturnValue] attribute boolean returnValue;
+ [MeasureAs=EventCancelBubble] attribute boolean cancelBubble;
+ [MeasureAs=EventPath] readonly attribute NodeList path;
+ [Custom=Getter, MeasureAs=EventClipboardData] readonly attribute DataTransfer clipboardData;
};