summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-ui-valid/input/input-radio-nogroup-required-invalid.html
blob: 43285750c3081b2a040dcea47913c85d4de5fa1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!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').matches(':-moz-ui-valid')) {
                  document.body.textContent='FAIL';
                } else {
                  document.body.textContent='SUCCESS';
                }
                document.documentElement.className='';">
    <input id='i' type='radio' required>
  </body>
</html>