summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-valid/select/select-required-multiple-valid.html
blob: 6bf74d623b7ab7d0d1f1ab83f9a746401f829503 (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, :valid should apply. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body>
    <select class='valid' required multiple>
      <option selected></option>
      <option selected>foo</option>
    </select>
  </body>
</html>