mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
286 B
HTML
18 lines
286 B
HTML
<html>
|
|
<body>
|
|
<script>
|
|
|
|
var success = 0;
|
|
|
|
try {
|
|
parent[name].success = 1;
|
|
} catch (e) {
|
|
parent.postMessage(e, "http://localhost:8888");
|
|
}
|
|
|
|
parent.postMessage(success ? "success" : "failure", "http://localhost:8888");
|
|
</script>
|
|
<p>Move on, nothing to see here...</p>
|
|
</body>
|
|
</html>
|