https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 23110f8ae0a5bf693f7af19cf0ce38b802e928c6 authored by ffxbld on 08 February 2012, 09:15:56 UTC
Added tag FIREFOX_11_0b2_BUILD1 for changeset 7850f65718ee. CLOSED TREE a=release
Tip revision: 23110f8
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