mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
739 B
HTML
28 lines
739 B
HTML
<!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>
|