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/css-invalid/form | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
31 files changed, 529 insertions, 0 deletions
diff --git a/layout/reftests/css-invalid/form/form-add-control.html b/layout/reftests/css-invalid/form/form-add-control.html new file mode 100644 index 0000000000..07d33ba163 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-add-control.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<!--form with one invalid element and another valid one is added dynamically --> +<html class='reftest-wait'> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <script> + function onloadHandler() + { + document.forms[0].appendChild(document.getElementById('i')); + document.documentElement.className = ''; + } + </script> + <body onload='onloadHandler();'> + <input id='i'> + <form> + <input required> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-add-invalid-element-dynamic.html b/layout/reftests/css-invalid/form/form-add-invalid-element-dynamic.html new file mode 100644 index 0000000000..29bb4ad309 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-add-invalid-element-dynamic.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<!-- form with no elements and invalid element is added dynamically --> +<html> + <head> + <style> + form:invalid { display:none } + </style> + <script> + function onLoadHandler() + { + document.forms[0].appendChild(document.getElementById('i')); + document.documentElement.className=''; + } + </script> + </head> + <body onload='onLoadHandler();'> + <input id='i' required> + <form> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-add-invalid-element.html b/layout/reftests/css-invalid/form/form-add-invalid-element.html new file mode 100644 index 0000000000..9f6017cd61 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-add-invalid-element.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<!--form with one invalid element and another invalid one is added dynamically --> +<html class='reftest-wait'> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <script> + function onloadHandler() + { + document.forms[0].appendChild(document.getElementById('i')); + document.documentElement.className = ''; + } + </script> + <body onload='onloadHandler();'> + <input id='i' type='email' value='foo'> + <form> + <input id='j' type='email' value='foo'> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-add-invalid-with-valid-element.html b/layout/reftests/css-invalid/form/form-add-invalid-with-valid-element.html new file mode 100644 index 0000000000..1260e3f958 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-add-invalid-with-valid-element.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<!--form with one valid element and invalid one is added dynamically --> +<html class='reftest-wait'> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <script> + function onloadHandler() + { + document.forms[0].appendChild(document.getElementById('i')); + document.documentElement.className = ''; + } + </script> + <body onload='onloadHandler();'> + <input id='i' type='email' value='bar'> + <form> + <input id='j' type='text' value='foo'> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-add-valid-element.html b/layout/reftests/css-invalid/form/form-add-valid-element.html new file mode 100644 index 0000000000..09bbd0f115 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-add-valid-element.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<!--form with one valid element and another valid one is added dynamically --> +<html class='reftest-wait'> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <script> + function onloadHandler() + { + document.forms[0].appendChild(document.getElementById('i')); + document.documentElement.className = ''; + } + </script> + <body onload='onloadHandler();'> + <input id='i' type='text' value='bar'> + <form> + <input id='j' type='text' value='foo'> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-add-valid-with-invalid-element.html b/layout/reftests/css-invalid/form/form-add-valid-with-invalid-element.html new file mode 100644 index 0000000000..205897ca06 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-add-valid-with-invalid-element.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<!--form with one invalid element and another valid one is added dynamically --> +<html class='reftest-wait'> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <script> + function onloadHandler() + { + document.forms[0].appendChild(document.getElementById('i')); + document.documentElement.className = ''; + } + </script> + <body onload='onloadHandler();'> + <input id='i' type='text' value='foo'> + <form> + <input id='j' type='email' value='emailfoo'> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-add-valid-with-no-element.html b/layout/reftests/css-invalid/form/form-add-valid-with-no-element.html new file mode 100644 index 0000000000..1c2632fbc9 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-add-valid-with-no-element.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<!--form with no valid element and another valid one is added dynamically --> +<html class='reftest-wait'> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <script> + function onloadHandler() + { + document.forms[0].appendChild(document.getElementById('i')); + document.documentElement.className = ''; + } + </script> + <body onload='onloadHandler();'> + <input id='i' type='text' value='foo'> + <form> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-dynamic-invalid-barred.html b/layout/reftests/css-invalid/form/form-dynamic-invalid-barred.html new file mode 100644 index 0000000000..ff110054b0 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-dynamic-invalid-barred.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<!-- form with one invalid element and dynamically made it element with +barred constraints --> +<html class='reftest-wait'> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <script> + function onloadHandler() + { + document.getElementById('i').readOnly = 'ro'; + document.documentElement.className = ''; + } + </script> + <body onload='onloadHandler();'> + <form> + <input id='i' required> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-dynamic-invalid-not-barred.html b/layout/reftests/css-invalid/form/form-dynamic-invalid-not-barred.html new file mode 100644 index 0000000000..f38ff854e6 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-dynamic-invalid-not-barred.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html class='reftest-wait'> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <script> + function onloadHandler() + { + document.getElementById('i').removeAttribute('readonly'); + document.documentElement.className = ''; + } + </script> + <body onload='onloadHandler();'> + <form> + <input id='i' required readonly> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-dynamic-invalid.html b/layout/reftests/css-invalid/form/form-dynamic-invalid.html new file mode 100644 index 0000000000..6e189b4c52 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-dynamic-invalid.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<!-- form with one invalid element which is made invalid dynamically --> +<html class='reftest-wait'> + <head> + <style> + form:invalid { display: none; } + :-moz-ui-invalid { box-shadow: none; } + </style> + </head> + <script> + function onloadHandler() + { + document.getElementById('i').value = ''; + document.documentElement.className = ''; + } + </script> + <body onload='onloadHandler();'> + <form> + <input id='i' value='foo' required> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-dynamic-valid.html b/layout/reftests/css-invalid/form/form-dynamic-valid.html new file mode 100644 index 0000000000..d8bb2a90fa --- /dev/null +++ b/layout/reftests/css-invalid/form/form-dynamic-valid.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<!-- form with one valid element which is made valid dynamically --> +<html> + <head> + <style> + form:invalid {display: none;} + </style> + </head> + <script> + function onloadHandler() + { + document.getElementById('i').value = 'foo'; + document.documentElement.className = ''; + } + </script> + <body onload="onloadHandler();"> + <form> + <input id='i' required> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-invalid-and-barred-remove-barred.html b/layout/reftests/css-invalid/form/form-invalid-and-barred-remove-barred.html new file mode 100644 index 0000000000..62e24162f7 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-invalid-and-barred-remove-barred.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<!-- form with one invalid element and a barred for constraint +validation element then you remove the second element --> +<html class='reftest-wait'> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <script> + function onloadHandler() + { + document.forms[0].removeChild(document.getElementById('j')); + document.documentElement.className = ''; + } + </script> + <body onload='onloadHandler();'> + <form> + <input required> + <input id='j' value='foo' readonly> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-invalid-and-barred.html b/layout/reftests/css-invalid/form/form-invalid-and-barred.html new file mode 100644 index 0000000000..0d4391be39 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-invalid-and-barred.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<!-- Form with one invalid element and a barred for constraint validation element --> +<html> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <body> + <form> + <input required> + <input id='i' value='foo' readonly required> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-invalid-barred-ref.html b/layout/reftests/css-invalid/form/form-invalid-barred-ref.html new file mode 100644 index 0000000000..d9ba4a84c7 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-invalid-barred-ref.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<html> + <body> + <form> + <input required readonly> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-invalid-barred.html b/layout/reftests/css-invalid/form/form-invalid-barred.html new file mode 100644 index 0000000000..8509352a51 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-invalid-barred.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<!-- form with invalid barred for constraint validation element --> +<html> + <head> + <style> + form:invalid { display: none ;} + </style> + </head> + <body> + <form> + <input required readonly> + </form> + </body> +</html> + diff --git a/layout/reftests/css-invalid/form/form-invalid-ref-2.html b/layout/reftests/css-invalid/form/form-invalid-ref-2.html new file mode 100644 index 0000000000..dd03dc812f --- /dev/null +++ b/layout/reftests/css-invalid/form/form-invalid-ref-2.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<html> + <body> + <form> + <input type='email' value='foo'> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-invalid-ref.html b/layout/reftests/css-invalid/form/form-invalid-ref.html new file mode 100644 index 0000000000..d1d41176c9 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-invalid-ref.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<html> + <body> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-remove-invalid-element.html b/layout/reftests/css-invalid/form/form-remove-invalid-element.html new file mode 100644 index 0000000000..5a75a4c3db --- /dev/null +++ b/layout/reftests/css-invalid/form/form-remove-invalid-element.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<!-- form with one invalid element and the element is dynamically removed --> +<html class='reftest-wait'> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <script> + function onloadHandler() + { + document.forms[0].removeChild(document.getElementById('i')); + document.documentElement.className = ''; + } + </script> + <body onload='onloadHandler();'> + <form> + <input id='i' type='email' value='foo'> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-static-invalid-barred.html b/layout/reftests/css-invalid/form/form-static-invalid-barred.html new file mode 100644 index 0000000000..fd1fb016d5 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-static-invalid-barred.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <body> + <form> + <input required readonly> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-static-invalid.html b/layout/reftests/css-invalid/form/form-static-invalid.html new file mode 100644 index 0000000000..aea413e491 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-static-invalid.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<!--form with only invalid elements --> +<html> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <body> + <form> + <input required> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-static-valid.html b/layout/reftests/css-invalid/form/form-static-valid.html new file mode 100644 index 0000000000..b2104bacdf --- /dev/null +++ b/layout/reftests/css-invalid/form/form-static-valid.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<!-- form with only valid elements --> +<html> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <body> + <form> + <input value='foo' required> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-valid-and-barred-ref.html b/layout/reftests/css-invalid/form/form-valid-and-barred-ref.html new file mode 100644 index 0000000000..a0dd9e358e --- /dev/null +++ b/layout/reftests/css-invalid/form/form-valid-and-barred-ref.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html> + <body> + <form> + <input value='bar' required> + <input value='foo' readonly required> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-valid-and-barred-remove-barred.html b/layout/reftests/css-invalid/form/form-valid-and-barred-remove-barred.html new file mode 100644 index 0000000000..dd63b8c5c4 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-valid-and-barred-remove-barred.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<!-- form with one valid element and a barred for constraint +validation element then you remove the second element --> +<html class='reftest-wait'> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <script> + function onloadHandler() + { + document.forms[0].removeChild(document.getElementById('j')); + document.documentElement.className = ''; + } + </script> + <body onload='onloadHandler();'> + <form> + <input id='i' value='foo'required> + <input id='j' value='bar' readonly> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-valid-and-barred.html b/layout/reftests/css-invalid/form/form-valid-and-barred.html new file mode 100644 index 0000000000..3cface5e61 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-valid-and-barred.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<!-- Form with one invalid element and a barred for constraint validation element --> +<html> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <body> + <form> + <input id='i' value='bar'required> + <input id='i' value='foo' readonly required> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-valid-ref-2.html b/layout/reftests/css-invalid/form/form-valid-ref-2.html new file mode 100644 index 0000000000..47698f1d99 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-valid-ref-2.html @@ -0,0 +1,7 @@ +<!DOCTYPE html> +<html> + <body> + <form> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-valid-ref-4.html b/layout/reftests/css-invalid/form/form-valid-ref-4.html new file mode 100644 index 0000000000..881c5cab87 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-valid-ref-4.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html> + <body> + <form> + <input type='text' value='foo'> + <input type='text' value='bar'> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-valid-ref.html b/layout/reftests/css-invalid/form/form-valid-ref.html new file mode 100644 index 0000000000..e210a812e5 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-valid-ref.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<html> + <body> + <form> + <input type='text' value='foo' required> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-with-invalid-element-add-barred-dynamic.html b/layout/reftests/css-invalid/form/form-with-invalid-element-add-barred-dynamic.html new file mode 100644 index 0000000000..893af3e5c0 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-with-invalid-element-add-barred-dynamic.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<!-- form with one valid element and you dynamically add a barred constraint +validation element --> +<html> + <head> + <style> + form:invalid { display:none } + </style> + <script> + function onLoadHandler() + { + document.forms[0].appendChild(document.getElementById('i')); + document.documentElement.className=''; + } + </script> + </head> + <body onload='onLoadHandler();'> + <input id='i' value='foo' readonly> + <form> + <input required> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/form-with-valid-and-invalid.html b/layout/reftests/css-invalid/form/form-with-valid-and-invalid.html new file mode 100644 index 0000000000..b4ed305766 --- /dev/null +++ b/layout/reftests/css-invalid/form/form-with-valid-and-invalid.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<!-- form with invalid and valid elements --> +<html> + <head> + <style> + form:invalid { display: none; } + </style> + </head> + <body> + <form> + <input id='i' value='foo'> + <input required> + <form> + <body> +<html> diff --git a/layout/reftests/css-invalid/form/form-with-valid-element-add-barred-dynamic.html b/layout/reftests/css-invalid/form/form-with-valid-element-add-barred-dynamic.html new file mode 100644 index 0000000000..c012d2521d --- /dev/null +++ b/layout/reftests/css-invalid/form/form-with-valid-element-add-barred-dynamic.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<!-- form with one valid element and you dynamically add a barred constraint +validation element --> +<html> + <head> + <style> + form:invalid { display:none } + </style> + <script> + function onLoadHandler() + { + document.forms[0].appendChild(document.getElementById('i')); + document.documentElement.className=''; + } + </script> + </head> + <body onload='onLoadHandler();'> + <input id='i' value='foo' readonly> + <form> + <input id='j' value='bar' required> + </form> + </body> +</html> diff --git a/layout/reftests/css-invalid/form/reftest.list b/layout/reftests/css-invalid/form/reftest.list new file mode 100644 index 0000000000..c1e513d58b --- /dev/null +++ b/layout/reftests/css-invalid/form/reftest.list @@ -0,0 +1,24 @@ +== form-static-valid.html form-valid-ref.html +== form-dynamic-valid.html form-valid-ref.html +== form-remove-invalid-element.html form-valid-ref-2.html +== form-static-invalid.html form-invalid-ref.html +== form-dynamic-invalid.html form-invalid-ref.html +== form-add-control.html form-invalid-ref.html +== form-dynamic-invalid-not-barred.html form-invalid-ref.html +== form-remove-invalid-element.html form-invalid-ref.html +== form-dynamic-invalid-barred.html form-invalid-barred-ref.html +== form-static-invalid-barred.html form-invalid-barred-ref.html +== form-add-invalid-element.html form-invalid-ref.html +== form-add-valid-with-invalid-element.html form-invalid-ref.html +== form-invalid-barred.html form-invalid-barred-ref.html +== form-add-valid-element.html form-valid-ref-4.html +== form-add-valid-with-no-element.html form-valid-ref.html +== form-add-invalid-with-valid-element.html form-invalid-ref.html +== form-with-valid-and-invalid.html form-invalid-ref.html +== form-add-invalid-element-dynamic.html form-invalid-ref.html +== form-invalid-and-barred.html form-invalid-ref.html +== form-invalid-and-barred-remove-barred.html form-invalid-ref.html +== form-valid-and-barred.html form-valid-and-barred-ref.html +fuzzy-if(geckoview,0-4,0-2) == form-valid-and-barred-remove-barred.html form-valid-ref.html +== form-with-invalid-element-add-barred-dynamic.html form-invalid-ref.html +== form-with-valid-element-add-barred-dynamic.html form-valid-and-barred-ref.html |