mirror of
https://github.com/servo/servo.git
synced 2025-07-13 02:13:40 +01:00
26 lines
700 B
JavaScript
26 lines
700 B
JavaScript
// META: script=/common/media.js
|
|
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
// META: script=/resources/testdriver.js
|
|
// META: script=/resources/testdriver-vendor.js
|
|
// META: script=resources/picture-in-picture-helpers.js
|
|
|
|
'use strict';
|
|
|
|
// https://wicg.github.io/picture-in-picture/
|
|
|
|
idl_test(
|
|
['picture-in-picture'],
|
|
['html', 'dom'],
|
|
async idl_array => {
|
|
idl_array.add_objects({
|
|
Document: ['document'],
|
|
DocumentOrShadowRoot: ['document'],
|
|
HTMLVideoElement: ['video'],
|
|
PictureInPictureWindow: ['pipw'],
|
|
});
|
|
|
|
self.video = await loadVideo();
|
|
self.pipw = await requestPictureInPictureWithTrustedClick(video);
|
|
}
|
|
);
|