summaryrefslogtreecommitdiffstats
path: root/dom/html/crashtests/1386905.html
blob: 6ecc59e23b5fe9bc9af3a3c1ea7c55ecd5365974 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!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>