Index: core/css/MediaQueryListEvent.idl |
diff --git a/core/css/MediaQueryListEvent.idl b/core/css/MediaQueryListEvent.idl |
index 2376a4fe998388d1431749e5831b047b5b74ea04..f229e79b19c7d02b7a6f5683336d46805106a0cf 100644 |
--- a/core/css/MediaQueryListEvent.idl |
+++ b/core/css/MediaQueryListEvent.idl |
@@ -4,9 +4,10 @@ |
// http://dev.w3.org/csswg/cssom-view/#mediaquerylistevent |
+ |
[ |
- EventConstructor, |
+ Constructor(DOMString type, optional MediaQueryListEventInit eventInitDict) |
] interface MediaQueryListEvent : Event { |
- [InitializedByEventConstructor] readonly attribute DOMString media; |
- [InitializedByEventConstructor] readonly attribute boolean matches; |
+ readonly attribute DOMString media; |
+ readonly attribute boolean matches; |
}; |