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

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>