| Index: Source/core/css/MediaQueryList.idl
|
| diff --git a/Source/core/css/MediaQueryList.idl b/Source/core/css/MediaQueryList.idl
|
| index 0a3e867791ce0d6ef3c888824ccedea26d04224b..7c1a4af139e70a1245b7a388e6b0d08a87700e07 100644
|
| --- a/Source/core/css/MediaQueryList.idl
|
| +++ b/Source/core/css/MediaQueryList.idl
|
| @@ -17,19 +17,18 @@
|
| * Boston, MA 02110-1301, USA.
|
| */
|
|
|
| -// http://dev.w3.org/csswg/cssom-view/#mediaquerylist
|
| +// http://dev.w3.org/csswg/cssom-view/#the-mediaquerylist-interface
|
| +
|
| [
|
| ActiveDOMObject,
|
| ] interface MediaQueryList : EventTarget {
|
| readonly attribute DOMString media;
|
| readonly attribute boolean matches;
|
| -
|
| // Even though this interface is now an event target, these functions
|
| // exist as aliases for addEventListener for backwards compatibility
|
| // with older versions of this interface. See the note at
|
| // http://dev.w3.org/csswg/cssom-view/#dom-mediaquerylist-removelistener
|
| [ImplementedAs=addDeprecatedListener, Custom=CallEpilogue] void addListener(EventListener? listener);
|
| [ImplementedAs=removeDeprecatedListener, Custom=CallEpilogue]void removeListener(EventListener? listener);
|
| -
|
| attribute EventHandler onchange;
|
| };
|
|
|