mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-29 21:25:35 +00:00
18 lines
288 B
HTML
18 lines
288 B
HTML
<html>
|
|
<body>
|
|
<script>
|
|
|
|
var success = 0;
|
|
|
|
try {
|
|
parent[name].success = 1;
|
|
} catch (e) {
|
|
parent.postMessage(e, "http://mochi.test:8888");
|
|
}
|
|
|
|
parent.postMessage(success ? "success" : "failure", "http://mochi.test:8888");
|
|
</script>
|
|
<p>Move on, nothing to see here...</p>
|
|
</body>
|
|
</html>
|