blob: 094e9a20de43e4f9ef0bcc26e6681a6a3256cf1d [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
[
Constructor(DOMString type, optional MediaQueryListEventInit eventInitDict)
] interface MediaQueryListEvent : Event {
readonly attribute DOMString media;
readonly attribute boolean matches;
};