mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-29 18:58:40 +09:00
14 lines
298 B
HTML
14 lines
298 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function appendScript(doc) {
|
|
var s = doc.createElement("script");
|
|
s.textContent = "document.write('executed'); document.close()";
|
|
doc.body.appendChild(s);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="appendScript(window.document)">
|
|
</body>
|
|
</html>
|