summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-invalid/select/select-required-multiple-valid.html
blob: e58e0c576aaf317158524b85fb391eaa9ed10c31 (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, :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>