https://github.com/mozilla/gecko-dev
Raw File
Tip revision: f706931ca7745463332c09345b7e004b8638c9b2 authored by ffxbld on 08 July 2011, 00:39:46 UTC
Added tag FIREFOX_5_0_1_BUILD1 for changeset 3ded311d93ad. CLOSED TREE a=release
Tip revision: f706931
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