blob: 9f4b9f846d439a6dfc8a9042db9d8bc62c9032d5 (
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
25
|
<!DOCTYPE HTML>
<html>
<head>
<title>Test for cookies + script loading when the policy changes</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="application/javascript" src="cookiesHelper.js"></script>
</head>
<body>
<script type="application/javascript">
runTests(async (w, state) => {
w.document.cookie = "name=value";
let p = new w.Promise(resolve => { w.scriptLoaded = resolve; });
let script = document.createElement("script");
script.src = "cookie.sjs?script&" + Math.random();
w.document.body.appendChild(script);
await p;
await checkLastRequest("script", state);
});
</script>
</body>
</html>
|