https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 5f72803c6e7aa1b884da20485ccf7f09b885cf7e authored by seabld on 07 November 2011, 20:49:47 UTC
Added tag SEAMONKEY_2_5b4_RELEASE for changeset FIREFOX_8_0b6_BUILD2. CLOSED TREE a=release
Tip revision: 5f72803
input-radio-required-invalid-default.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: if input isn't valid nor barred from constraint validation,
             and its checkedness hasn't changed,
             it should not be affected by :-moz-ui-invalid pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body onload="if (document.getElementById('i').mozMatchesSelector(':-moz-ui-invalid')) {
                  document.body.textContent='FAIL';
                } else {
                  document.body.textContent='SUCCESS';
                }
                document.documentElement.className='';">
    <input id='i' type='radio' required>
  </body>
</html>
back to top