blob: e736af5602b87e7e0603dfaa685994a3c7ad4dc3 [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/#htmlvideoelement-extensions
[
ImplementedAs=HTMLVideoElementPictureInPicture,
RuntimeEnabled=PictureInPictureAPI
]
partial interface HTMLVideoElement {
// TODO(crbug.com/806249): Promise should return a PiPWindow.
[CallWith=ScriptState] Promise<void> requestPictureInPicture();
attribute EventHandler onenterpictureinpicture;
attribute EventHandler onleavepictureinpicture;
[CEReactions, Reflect] attribute boolean disablePictureInPicture;
};