https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 09c142125cebf07a848e6b8c6d211e3280b52623 authored by ffxbld on 09 November 2011, 17:08:52 UTC
Added tag FENNEC_9_0b1_BUILD1 for changeset 1501ad4b8180. CLOSED TREE a=release
Tip revision: 09c1421
input-radio-nogroup-required-invalid.html
<!DOCTYPE html>
<html class="reftest-wait">
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body onload="document.getElementById('i').checked = true;
                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