blob: fdc30d5f4fbcf6d9447042050bc570d8ca9f373e [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://drafts.csswg.org/cssom-view/#mediaquerylistevent
[
Exposed=Window,
Constructor(DOMString type, optional MediaQueryListEventInit eventInitDict)
] interface MediaQueryListEvent : Event {
readonly attribute DOMString media;
readonly attribute boolean matches;
};