mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-22 02:29:14 +00:00
11 lines
221 B
JavaScript
11 lines
221 B
JavaScript
onmessage = function() {
|
|
var a = new XMLHttpRequest();
|
|
a.open('GET', 'empty.html', false);
|
|
a.onreadystatechange = function() {
|
|
if (a.readyState == 4) {
|
|
postMessage(a.response);
|
|
}
|
|
}
|
|
a.send(null);
|
|
}
|