https://github.com/mozilla/gecko-dev
Raw File
Tip revision: e158bec1801248af552d92be2bb48a556d02a084 authored by seabld on 11 April 2013, 03:29:55 UTC
Added tag SEAMONKEY_2_17_1_RELEASE for changeset FIREFOX_20_0_1_BUILD1. CLOSED TREE a=release
Tip revision: e158bec
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