blob: d00b5690f86de91dd17c66f7f48047f40466e7f0 (
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 + XHR 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";
await new w.Promise(resolve => {
let xhr = new w.XMLHttpRequest();
xhr.open("GET", "cookie.sjs?xhr&" + Math.random());
xhr.send();
xhr.onload = resolve;
});
await checkLastRequest("xhr", state);
});
</script>
</body>
</html>
|