tenfourfox/layout/reftests/forms/output/output-5.html

19 lines
456 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html class="reftest-wait">
<!-- Test: the output element should show its default value -->
<script type="text/javascript">
function setDefaultValue()
{
document.getElementById('o').defaultValue = "foo";
}
function disableReftestWait()
{
document.documentElement.className = '';
}
</script>
<body onload="setDefaultValue(); disableReftestWait();">
<output id="o"></output>
</body>
</html>