1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-15 12:59:10 +00:00
Files
UXP/editor/libeditor/crashtests/1128787.html
T

18 lines
315 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Bug 1128787</title>
</head>
<body>
<input type="button"/>
<script>
window.onload = function () {
document.designMode = "on";
}
var input = document.getElementsByTagName("input")[0];
input.focus();
input.type = "text";
</script>
</body>
</html>