https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 70f1488c0b16ecd932f3053c70c41d0176b9cdc5 authored by ffxbld on 03 April 2015, 02:14:55 UTC
Added FENNEC_37_0_1_RELEASE FENNEC_37_0_1_BUILD1 tag(s) for changeset ac6b31f61d02. DONTBUILD CLOSED TREE a=release
Tip revision: 70f1488
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