summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/progress/block-invalidate.html
blob: 47ba03bdac114acba39915256a97ce7f45f70850 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html class='reftest-wait'>
  <link rel='stylesheet' type='text/css' href='style.css'>
  <style>
    progress { display: block; }
  </style>
  <script>
    function loadHandler() {
      setTimeout(function() {
        var p = document.getElementsByTagName('progress')[0];
        p.value = '0.5';
        document.documentElement.className = '';
      }, 0);
    }
  </script>
  <body onload="loadHandler();">
    <progress value='0'></progress>
  </body>
</html>