blob: 8bd793189501a94564044a3c2fa3757a69f13085 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src='/resources/testharness.js'></script>
<script src='/resources/testharnessreport.js'></script>
</head>
<body>
<img src="image.jpg">
<script>
var check_report_format = (reports, observer) => {
let report = reports[0];
assert_equals(report.type, "feature-policy");
assert_equals(report.url, document.location.href);
assert_equals(report.body.feature, "unsized-media");
assert_equals(typeof report.body.message, "string");
};
async_test(t => {
new ReportingObserver(t.step_func_done(check_report_format),
{types: ['feature-policy'], buffered: true}).observe();
}, "Unsized-media Report Format");
</script>
</body>
</html>