mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
8 lines
219 B
JavaScript
8 lines
219 B
JavaScript
onconnect = function(evt) {
|
|
evt.ports[0].onmessage = function(e) {
|
|
var blob = new Blob(['123'], { type: 'text/plain' });
|
|
var url = URL.createObjectURL(blob);
|
|
evt.ports[0].postMessage('alive \\o/');
|
|
};
|
|
}
|