blob: f841f63d6ed3503e7370d11a5305cd95588b1ff9 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src='/resources/testharness.js'></script>
<script src='/resources/testharnessreport.js'></script>
</head>
<body>
<script>
const check_report_format = ([reports, observer]) => {
const report = reports[0];
assert_equals(report.type, "feature-policy");
assert_equals(report.body.feature, "sync-xhr");
assert_equals(report.body.disposition, "report");
};
promise_test(async t => {
const report = new Promise(resolve => {
new ReportingObserver((reports, observer) => resolve([reports, observer]),
{types: ['feature-policy']}).observe();
});
const xhr = new XMLHttpRequest();
xhr.open("GET", document.location.href, false);
xhr.send();
check_report_format(await report);
}, "Sync-xhr report only mode");
</script>
</body>
</html>