mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 17:31:47 +09:00
15 lines
265 B
HTML
15 lines
265 B
HTML
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<script>
|
||
|
|
function start()
|
||
|
|
{
|
||
|
|
sessionStorage.setItem("foo-https", "secure");
|
||
|
|
parent.postMessage(sessionStorage.getItem("foo-https"),
|
||
|
|
"http://mochi.test:8888");
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body onload="start();">
|
||
|
|
secure
|
||
|
|
</body>
|
||
|
|
</html>
|