mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-11 18:51:05 +00:00
6 lines
154 B
JavaScript
6 lines
154 B
JavaScript
|
|
self.onmessage = function () {
|
||
|
|
let xhr = new XMLHttpRequest();
|
||
|
|
postMessage(xhr.responseXML === undefined ? "PASS" : "FAIL");
|
||
|
|
self.close();
|
||
|
|
};
|