summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-ui-invalid/input/input-dyn-not-readonly-changed.html
blob: e9686e98f7255b287bc66bce12c22acb74efe0a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: if input is no longer readonly, invalid and has it's value changed,
             it's affected by :-moz-ui-invalid pseudo-class. -->
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body onload="document.getElementById('i').removeAttribute('readonly');
                document.getElementById('i').value = '';
                document.documentElement.className='';">
    <input class='invalid' id='i' readonly required>
  </body>
</html>