mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +09:00
10 lines
235 B
HTML
10 lines
235 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
onload = function() {
|
|
document.open();
|
|
document.close();
|
|
parent.report(window.setTimeout === setTimeout, false, "setTimeout");
|
|
parent.report(window === this, true, "this");
|
|
parent.done();
|
|
}
|
|
</script>
|