blob: 8ae8b89b07d410cd6a70b2a845175e4002e2f381 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<html>
<!-- Test: if select is required and has a selected option which has value
different from the empty string, :-moz-ui-invalid should not apply. -->
<link rel='stylesheet' type='text/css' href='style.css'>
<body>
<select class='notinvalid' required multiple>
<option selected></option>
<option selected>foo</option>
</select>
</body>
</html>
|