-
Notifications
You must be signed in to change notification settings - Fork 54
/
picture-in-picture-reporting.html
46 lines (44 loc) · 1.76 KB
/
picture-in-picture-reporting.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<script src='/common/media.js'></script>
<script src='/resources/testharness.js'></script>
<script src='/resources/testharnessreport.js'></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src='../resources/picture-in-picture.js'></script>
</head>
<body>
<script>
const check_report_format = (reports, observer) => {
const report = reports[0];
assert_equals(report.type, "feature-policy-violation");
assert_equals(report.url, document.location.href);
assert_equals(report.body.featureId, "picture-in-picture");
assert_equals(report.body.sourceFile, document.location.href);
assert_equals(typeof report.body.lineNumber, "number");
assert_equals(typeof report.body.columnNumber, "number");
assert_equals(report.body.disposition, "enforce");
};
const loadVideo = () => new Promise(resolve => {
const video = document.createElement('video');
video.src = getVideoURI('/media/movie_5');
video.addEventListener('loadedmetadata', () => {
resolve(video);
}, { once: true });
});
promise_pip_test(async (t) => {
const report = new Promise(resolve => {
new ReportingObserver((reports, observer) => resolve([reports, observer]),
{types: ['feature-policy-violation']}).observe();
});
const videoElement = await loadVideo();
await test_driver.bless('picture-in-picture');
await promise_rejects(t, 'SecurityError', videoElement.requestPictureInPicture(),
"Picture-in-Picture should not be allowed in this document.");
const [reports, observer] = await report;
check_report_format(reports, observer);
}, "Picture-in-Picture Report Format");
</script>
</body>
</html>