mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 08:27:31 +09:00
14 lines
259 B
HTML
14 lines
259 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html class="reftest-wait">
|
||
|
|
<head>
|
||
|
|
<script>
|
||
|
|
function go() {
|
||
|
|
window.location = "javascript: foopy();";
|
||
|
|
setTimeout(function(){document.documentElement.removeAttribute("class");}, 0);
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body onload="go()">
|
||
|
|
</body>
|
||
|
|
</html>
|