diff options
Diffstat (limited to 'toolkit/devtools/storage/test/storage-unsecured-iframe.html')
-rw-r--r-- | toolkit/devtools/storage/test/storage-unsecured-iframe.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/toolkit/devtools/storage/test/storage-unsecured-iframe.html b/toolkit/devtools/storage/test/storage-unsecured-iframe.html new file mode 100644 index 000000000..c3a1eeb57 --- /dev/null +++ b/toolkit/devtools/storage/test/storage-unsecured-iframe.html @@ -0,0 +1,27 @@ +<!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*(callback) { + document.cookie = "uc1=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; domain=.example.org; secure=true"; + localStorage.clear(); + sessionStorage.clear(); + console.log("removed cookies and stuff from unsecured iframe"); + callback(); +} +</script> +</body> +</html> |