mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 03:43:16 +09:00
12 lines
246 B
HTML
12 lines
246 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Page creating a popup</title>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
window.open("data:text/plain;charset=utf-8,a", "a");
|
|
</script>
|
|
</body>
|
|
</html>
|