https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a2b76b0564f163d3a1ba93e3b55a2fba1305d39b authored by tbirdbld on 20 June 2012, 03:39:11 UTC
Added THUNDERBIRD_14_0b3_RELEASE THUNDERBIRD_14_0b3_BUILD1 tag(s) for changeset 7945471fc07f. DONTBUILD CLOSED TREE a=release
Tip revision: a2b76b0
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