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