mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 16:37:31 +09:00
23 lines
454 B
HTML
23 lines
454 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html class="reftest-wait">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<script>
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var frameDoc = document.getElementById("f").contentDocument;
|
||
|
|
var frameRoot = frameDoc.documentElement;
|
||
|
|
frameDoc.write("");
|
||
|
|
frameRoot.setAttribute("onload", "");
|
||
|
|
frameRoot.onload;
|
||
|
|
document.documentElement.removeAttribute("class");
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body onload="boom();">
|
||
|
|
<iframe id="f" src="data:text/html,1"></iframe>
|
||
|
|
</body>
|
||
|
|
</html>
|