https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9e999120ccbf94e11abb1ed729d7d40dd70a9bea authored by ffxbld on 19 December 2013, 22:17:22 UTC
Added FENNEC_26_0_1_RELEASE FENNEC_26_0_1_BUILD1 tag(s) for changeset 91b88e38da1e. DONTBUILD CLOSED TREE a=release
Tip revision: 9e99912
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