https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 2c4f51be60ad9c560d8ea89ff3e7aaaec06192b7 authored by seabld on 31 May 2012, 07:30:18 UTC
Added tag SEAMONKEY_2_10b3_RELEASE for changeset FIREFOX_13_0b6_BUILD1. CLOSED TREE a=release
Tip revision: 2c4f51b
select-valid-reset.html
<!DOCTYPE html>
<html class='reftest-wait'>
  <!-- Test: if select has no custom error and is not barred from constraint
             validation, it should be affected by :-moz-ui-valid pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body onload="document.getElementById('s').selectedIndex = 0;
                document.forms[0].reset();
                document.documentElement.className ='';">
    <form>
      <select id='s' class='notvalid' required>
        <option>foo</option>
      </select>
    </form>
  </body>
</html>
back to top