mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
459 B
HTML
18 lines
459 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script>
|
|
function pingWorker() {
|
|
var port = navigator.mozSocial.getWorker().port;
|
|
port.postMessage({topic: "service-window-message",
|
|
location: window.location.href,
|
|
result: "ok"
|
|
});
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="pingWorker();">
|
|
<p>This is a test social service window.</p>
|
|
</body>
|
|
</html>
|