Source code
Revision control
Copy as Markdown
Other Tools
<html>
<head>
<script>
function start()
{
sessionStorage.setItem("foo-https", "secure");
parent.postMessage(sessionStorage.getItem("foo-https"),
}
</script>
</head>
<body onload="start();">
secure
</body>
</html>