summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-required/css-required-dyn-2.html
blob: f19ae3c1e4338cfe3c5473cf346a736359ffdba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: Change an input element from required type
             to a non-required type. -->
  <link rel='stylesheet' type='text/css' href='css-required-style.css'>

  <script type="text/javascript">
    function changeType()
    {
      document.getElementById('i').type = 'submit';
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

  <body onload="changeType(); disableReftestWait();">
    <input type="text" id="i" required>
  </body>
</html>