blob: bb4ee95dbb4e70cb398a58cc651d5ba82a983293 [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://dev.w3.org/csswg/cssom-view/#mediaquerylistevent
[
Constructor(DOMString type, optional MediaQueryListEventInit eventInitDict)
] interface MediaQueryListEvent : Event {
readonly attribute DOMString media;
readonly attribute boolean matches;
};