https://github.com/mozilla/gecko-dev
Raw File
Tip revision: cce5fb62801b2dc2d43fed147961f47cb033ca97 authored by Matt Brubeck on 09 June 2011, 18:11:04 UTC
Backed out changeset 08a50378d37c (landed on relbranch by accident). a=backout
Tip revision: cce5fb6
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