mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-24 05:13:07 +09:00
11 lines
282 B
HTML
11 lines
282 B
HTML
<html class="reftest-wait">
|
|
<script type="text/javascript">
|
|
var worker = new Worker("700512-worker.js");
|
|
|
|
worker.onmessage = function() {
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
worker.postMessage(new Blob(["foo", "bar"]));
|
|
</script>
|
|
</html>
|