blob: d912035a530dfe063daa786e156cc06819dfd4c8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!DOCTYPE html>
<html>
<body>
<input size="20" maxlength="2">
<script>
document.body.offsetWidth;
document.getElementsByTagName("input")[0].setAttribute("value", "abcde");
</script>
</body>
</html>
|