blob: e668b2113610ce03ec2cd14100c21df68b61b257 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<body>
<style>
/* Override the default :invalid style. */
:invalid { box-shadow: none; }
</style>
<input size="20" maxlength="2">
<script>
document.body.offsetWidth;
document.getElementsByTagName("input")[0].value = "abcde";
</script>
</body>
</html>
|