output-7.html (539B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <!-- Test: the output element should show its value --> 4 <script type="text/javascript"> 5 function setDefaultValue() 6 { 7 document.getElementById('o').value = "bar"; 8 } 9 function setValue() 10 { 11 document.getElementById('o').value = "foo"; 12 } 13 function disableReftestWait() 14 { 15 document.documentElement.className = ''; 16 } 17 </script> 18 19 <body onload="setDefaultValue(); setValue(); disableReftestWait();"> 20 <output id="o"></output> 21 </body> 22 </html>