diff options
Diffstat (limited to 'layout/reftests/forms/output/output-7.html')
-rw-r--r-- | layout/reftests/forms/output/output-7.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/layout/reftests/forms/output/output-7.html b/layout/reftests/forms/output/output-7.html new file mode 100644 index 0000000000..0ec10f3c31 --- /dev/null +++ b/layout/reftests/forms/output/output-7.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <!-- Test: the output element should show its value --> + <script type="text/javascript"> + function setDefaultValue() + { + document.getElementById('o').value = "bar"; + } + function setValue() + { + document.getElementById('o').value = "foo"; + } + function disableReftestWait() + { + document.documentElement.className = ''; + } + </script> + + <body onload="setDefaultValue(); setValue(); disableReftestWait();"> + <output id="o"></output> + </body> +</html> |