mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 02:43:07 +09:00
13 lines
345 B
HTML
13 lines
345 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
document.documentElement.getBoundingClientRect()
|
|
document.documentElement.innerHTML = "<input placeholder=e type=number readonly>"
|
|
document.designMode = "on"
|
|
document.execCommand("inserttext", false, "")
|
|
document.designMode = "off"
|
|
document.documentElement.style.display = 'none'
|
|
</script>
|
|
</head>
|
|
</html>
|