https://github.com/mozilla/gecko-dev
Raw File
Tip revision: c0b1c8b49e84c047a107e77e7ad76c633b9b4257 authored by ffxbld on 20 March 2015, 03:05:44 UTC
Added FIREFOX_36_0_3_RELEASE FIREFOX_36_0_3_BUILD1 tag(s) for changeset f5cca5d1d661. DONTBUILD CLOSED TREE a=release
Tip revision: c0b1c8b
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