diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/forms/output | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/forms/output')
-rw-r--r-- | layout/reftests/forms/output/output-1.html | 7 | ||||
-rw-r--r-- | layout/reftests/forms/output/output-2.html | 7 | ||||
-rw-r--r-- | layout/reftests/forms/output/output-3.html | 7 | ||||
-rw-r--r-- | layout/reftests/forms/output/output-4.html | 7 | ||||
-rw-r--r-- | layout/reftests/forms/output/output-5.html | 18 | ||||
-rw-r--r-- | layout/reftests/forms/output/output-6.html | 18 | ||||
-rw-r--r-- | layout/reftests/forms/output/output-7.html | 22 | ||||
-rw-r--r-- | layout/reftests/forms/output/output-ref-2.html | 6 | ||||
-rw-r--r-- | layout/reftests/forms/output/output-ref-3.html | 6 | ||||
-rw-r--r-- | layout/reftests/forms/output/output-ref.html | 6 | ||||
-rw-r--r-- | layout/reftests/forms/output/reftest.list | 7 |
11 files changed, 111 insertions, 0 deletions
diff --git a/layout/reftests/forms/output/output-1.html b/layout/reftests/forms/output/output-1.html new file mode 100644 index 0000000000..0fdb2ae8b9 --- /dev/null +++ b/layout/reftests/forms/output/output-1.html @@ -0,0 +1,7 @@ +<!DOCTYPE html> +<html> + <!-- Test: the output shouldn't show anything when there is no content --> + <body> + <output></output> + </body> +</html> diff --git a/layout/reftests/forms/output/output-2.html b/layout/reftests/forms/output/output-2.html new file mode 100644 index 0000000000..882e805ba0 --- /dev/null +++ b/layout/reftests/forms/output/output-2.html @@ -0,0 +1,7 @@ +<!DOCTYPE html> +<html> + <!-- Test: the output should show the textContent --> + <body> + <output>foo</output> + </body> +</html> diff --git a/layout/reftests/forms/output/output-3.html b/layout/reftests/forms/output/output-3.html new file mode 100644 index 0000000000..ecb17e9159 --- /dev/null +++ b/layout/reftests/forms/output/output-3.html @@ -0,0 +1,7 @@ +<!DOCTYPE html> +<html> + <!-- Test: the output should show its content --> + <body> + <output>foo<b>bar</b></output> + </body> +</html> diff --git a/layout/reftests/forms/output/output-4.html b/layout/reftests/forms/output/output-4.html new file mode 100644 index 0000000000..b0ce800beb --- /dev/null +++ b/layout/reftests/forms/output/output-4.html @@ -0,0 +1,7 @@ +<!DOCTYPE html> +<html> + <!-- Test: the output should show its content --> + <body> + <output>foo<input></output> + </body> +</html> diff --git a/layout/reftests/forms/output/output-5.html b/layout/reftests/forms/output/output-5.html new file mode 100644 index 0000000000..16bcf357a6 --- /dev/null +++ b/layout/reftests/forms/output/output-5.html @@ -0,0 +1,18 @@ +<!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> diff --git a/layout/reftests/forms/output/output-6.html b/layout/reftests/forms/output/output-6.html new file mode 100644 index 0000000000..b7e9ede758 --- /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> 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> diff --git a/layout/reftests/forms/output/output-ref-2.html b/layout/reftests/forms/output/output-ref-2.html new file mode 100644 index 0000000000..ad78e10e56 --- /dev/null +++ b/layout/reftests/forms/output/output-ref-2.html @@ -0,0 +1,6 @@ +<!DOCTYPE html> +<html> + <body> + foo<b>bar</b> + </body> +</html> diff --git a/layout/reftests/forms/output/output-ref-3.html b/layout/reftests/forms/output/output-ref-3.html new file mode 100644 index 0000000000..cae43bf45b --- /dev/null +++ b/layout/reftests/forms/output/output-ref-3.html @@ -0,0 +1,6 @@ +<!DOCTYPE html> +<html> + <body> + foo<input> + </body> +</html> diff --git a/layout/reftests/forms/output/output-ref.html b/layout/reftests/forms/output/output-ref.html new file mode 100644 index 0000000000..01d12af234 --- /dev/null +++ b/layout/reftests/forms/output/output-ref.html @@ -0,0 +1,6 @@ +<!DOCTYPE html> +<html> + <body> + foo + </body> +</html> diff --git a/layout/reftests/forms/output/reftest.list b/layout/reftests/forms/output/reftest.list new file mode 100644 index 0000000000..1bd798272e --- /dev/null +++ b/layout/reftests/forms/output/reftest.list @@ -0,0 +1,7 @@ +== output-1.html about:blank +== output-2.html output-ref.html +== output-3.html output-ref-2.html +== output-4.html output-ref-3.html +== output-5.html output-ref.html +== output-6.html output-ref.html +== output-7.html output-ref.html |