mirror of
https://github.com/roytam1/UXP.git
synced 2026-07-20 22:29:10 +00:00
14 lines
345 B
HTML
14 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>
|