https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9be20947214367a453cb673ac6e86634c70765af authored by ffxbld on 10 February 2016, 23:37:22 UTC
Added FIREFOX_44_0_2_RELEASE FIREFOX_44_0_2_BUILD3 tag(s) for changeset 60e96806ff1c. DONTBUILD CLOSED TREE a=release
Tip revision: 9be2094
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