blob: 04028ce9d05f5ae6342a767c6fef5a78e7818af2 [file] [log] [blame]
// Copyright 2018 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://wicg.github.io/picture-in-picture/#interface-picture-in-picture-window
[
ActiveScriptWrappable,
Exposed=Window,
RuntimeEnabled=PictureInPictureAPI
]
interface PictureInPictureWindow : EventTarget {
[Measure] readonly attribute long width;
[Measure] readonly attribute long height;
[RuntimeEnabled=PictureInPictureV2] readonly attribute Document? document;
attribute EventHandler onresize;
};