summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-required/css-required-dyn-1.html
blob: 6663609159da154173918720d4b54e33fb68f3ca (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 non-required type
             to a required type. -->
  <link rel='stylesheet' type='text/css' href='css-required-style.css'>

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

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