blob: 6d1c4045c392617fbbe2aa10f5eb4680ec832f74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<meta charset="utf-8">
<h1>Cross origin cookie sender</h1>
<script>
document.cookie = "🍪";
</script>
<!--
This is loaded from "example.com", which then loads
the manifest from "example.org".
-->
<link
rel="manifest"
href="https://example.org/browser/dom/manifest/test/cookie_checker.sjs"
crossorigin="use-credentials">
|