mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 16:09:23 +00:00
5 lines
154 B
JavaScript
5 lines
154 B
JavaScript
self.onmessage = function () {
|
|
let xhr = new XMLHttpRequest();
|
|
postMessage(xhr.responseXML === undefined ? "PASS" : "FAIL");
|
|
self.close();
|
|
};
|