diff options
Diffstat (limited to 'layout/reftests/forms/output/output-6.html')
-rw-r--r-- | layout/reftests/forms/output/output-6.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/forms/output/output-6.html b/layout/reftests/forms/output/output-6.html new file mode 100644 index 000000000..b7e9ede75 --- /dev/null +++ b/layout/reftests/forms/output/output-6.html @@ -0,0 +1,18 @@ +<!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> |