https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 4e4efe412e4255c18be822c32c542f8ff1f982ba authored by ffxbld on 14 December 2015, 23:31:43 UTC
Added FIREFOX_38_5_0esr_RELEASE FIREFOX_38_5_0esr_BUILD2 tag(s) for changeset a2285d85d6dc. DONTBUILD CLOSED TREE a=release
Tip revision: 4e4efe4
select-required-multiple-valid.html
<!DOCTYPE html>
<html>
  <!-- Test: if select is required and has at least one option selected but the
             selection didn't changed, :-moz-ui-valid should not apply. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body>
    <select class='notvalid' required multiple>
      <option selected></option>
      <option selected>foo</option>
    </select>
  </body>
</html>
back to top