gecko/dom/tests/mochitest/sessionstorage/file_https.html

16 lines
264 B
HTML
Raw Normal View History

<html>
<head>
<script>
function start()
{
sessionStorage.setItem("foo-https", "secure");
parent.postMessage(sessionStorage.getItem("foo-https"),
"http://localhost:8888");
}
</script>
</head>
<body onload="start();">
secure
</body>
</html>