mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01: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>
|