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

19 lines
427 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 value -->
<script type="text/javascript">
function setValue()
{
document.getElementById('o').value = "foo";
}
function disableReftestWait()
{
document.documentElement.className = '';
}
</script>
<body onload="setValue(); disableReftestWait();">
<output id="o"></output>
</body>
</html>