mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 15:57:31 +09:00
17 lines
293 B
HTML
17 lines
293 B
HTML
|
|
<!DOCTYPE HTML>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<script type="text/javascript">
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var frame = document.createElement("iframe");
|
||
|
|
frame.setAttribute("src", "1");
|
||
|
|
document.body.appendChild(frame);
|
||
|
|
frame.setAttribute("src", "2");
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body onload="boom();"></body>
|
||
|
|
</html>
|