chromium/third_party/blink/renderer/modules/picture_in_picture/picture_in_picture_window.idl

// Copyright 2018 The Chromium Authors
// 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
]
interface PictureInPictureWindow : EventTarget {
  [Measure] readonly attribute long width;
  [Measure] readonly attribute long height;

  attribute EventHandler onresize;
};