blob: 771434f6735dfe93a205ee35186a2b47a6eee9aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE HTML>
<html>
<head>
<title>Test that reports are sent with credentials to same-origin endpoints</title>
<script src="/common/utils.js"></script>
<script src='/resources/testharness.js'></script>
<script src='/resources/testharnessreport.js'></script>
<script src='/reporting/resources/report-helper.js'></script>
</head>
<body>
<script>
const endpoint = '/reporting/resources/report.py';
promise_test(async t => {
const uid = token();
const win = window.open(`./support/preload-csp-report.https.sub.html?uid=${uid}`);
t.add_cleanup(() => win.close());
const reports = await pollReports(endpoint, uid);
const failures = reports.filter(r => r['csp-report']['blocked-uri'].endsWith('fail.png'));
assert_equals(failures.length, 2);
}, "Reporting endpoints received credentials.");
</script>
</body>
</html>
|