https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 803370a48e1ecd421db5ea0bf18d5c5a24853854 authored by ffxbld on 27 October 2015, 16:04:17 UTC
Added FIREFOX_38_4_0esr_RELEASE FIREFOX_38_4_0esr_BUILD1 tag(s) for changeset d8cefc58bd1a. DONTBUILD CLOSED TREE a=release
Tip revision: 803370a
select-required-valid-changed-1.html
<!DOCTYPE html>
<html class='reftest-wait'>
  <!-- Test: if select is required and has a selected option and the selection
             did changed, :-moz-ui-valid should apply. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body onload="document.getElementById('s').selectedIndex = 0;
                document.documentElement.className = '';">
    <select id='s' class='valid' required>
      <option>foo</option>
    </select>
  </body>
</html>
back to top