blob: 63b77888b881144a02e7bd7cdb9cd4adc2eb6bf3 [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/#document-extensions
// https://wicg.github.io/picture-in-picture/#documentorshadowroot-extension
[
ImplementedAs=DocumentPictureInPicture,
OriginTrialEnabled=PictureInPictureAPI
]
partial interface Document {
[Measure] readonly attribute boolean pictureInPictureEnabled;
[CallWith=ScriptState, Measure] Promise<void> exitPictureInPicture();
// TODO(crbug.com/656517): Define this attribute in DocumentOrShadowRoot.
[Measure] readonly attribute HTMLVideoElement? pictureInPictureElement;
};