https://github.com/mozilla/gecko-dev
Raw File
Tip revision: eee23f5081aec48002c343e6b43864cdab4c7a89 authored by ffxbld on 24 June 2015, 21:12:08 UTC
Added FIREFOX_31_8_0esr_RELEASE FIREFOX_31_8_0esr_BUILD1 tag(s) for changeset c81c5e3eca8c. DONTBUILD CLOSED TREE a=release
Tip revision: eee23f5
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