mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 14:58:37 +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>
|