Index: sky/engine/core/events/Event.idl |
diff --git a/sky/engine/core/events/Event.idl b/sky/engine/core/events/Event.idl |
index d2904ddaa62e72067f8037f8ae0c4e0902fbdbd3..76f067b6376bd1fda40f04b126e7b81a6c8ef7e8 100644 |
--- a/sky/engine/core/events/Event.idl |
+++ b/sky/engine/core/events/Event.idl |
@@ -20,7 +20,6 @@ |
// Introduced in DOM Level 2: |
[ |
- Custom=Wrap, |
EventConstructor, |
] interface Event { |
// DOM PhaseType |
@@ -48,8 +47,8 @@ |
void stopImmediatePropagation(); |
// IE Extensions |
- [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; |
+ readonly attribute EventTarget srcElement; |
+ [CallWith=ExecutionContext, ImplementedAs=legacyReturnValue] attribute boolean returnValue; |
+ attribute boolean cancelBubble; |
+ readonly attribute NodeList path; |
}; |