blob: 33606f935df0ff45f6265dc828007023e059eb45 (
plain)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE html>
<!-- size should have no impact on <input type='file'>. -->
<html>
<body>
<input type='file' size='5'>
<br>
<input type='file' multiple size='30'>
</body>
</html>
|