summaryrefslogtreecommitdiffstats
path: root/devtools/server/tests/browser/storage-unsecured-iframe.html
blob: d339fb7f2551bbe4a18c05ef45fc8f6d6119917e (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
26
<!DOCTYPE HTML>
<html>
<!--
Iframe for testing multiple host detetion in storage actor
-->
<head>
  <meta charset="utf-8">
</head>
<body>
<script>

document.cookie = "uc1=foobar; domain=.example.org; path=/; secure=true";
localStorage.setItem("iframe-u-ls1", "foobar");
sessionStorage.setItem("iframe-u-ss1", "foobar1");
sessionStorage.setItem("iframe-u-ss2", "foobar2");
console.log("added cookies and stuff from unsecured iframe");

window.clear = function*() {
  document.cookie = "uc1=; expires=Thu, 01 Jan 1970 00:00:00 GMT";
  localStorage.clear();
  sessionStorage.clear();
  console.log("removed cookies and stuff from unsecured iframe");
}
</script>
</body>
</html>