mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-30 11:18:39 +09:00
13 lines
326 B
HTML
13 lines
326 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
document.domain = "{{host}}";
|
|
onmessage = function (e) {
|
|
parent.postMessage(
|
|
{
|
|
actual: e.origin,
|
|
expected: "{{location[scheme]}}://{{domains[www1]}}:{{ports[http][0]}}",
|
|
reason: "Incumbent should have been the caller of then()"
|
|
},
|
|
"*");
|
|
}
|
|
</script>
|