blob: 6401eb893a15081fc4e553382a4bc770bd6d2121 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<head>
<style>
:-moz-submit-invalid { display: none; }
</style>
</head>
<body>
<form>
<input value='foo' required>
<input type='submit'>
</form>
</body>
</html>
|