diff options
Diffstat (limited to 'layout/reftests/css-invalid/form/form-invalid-and-barred-remove-barred.html')
-rw-r--r-- | layout/reftests/css-invalid/form/form-invalid-and-barred-remove-barred.html | 23 |
1 files changed, 23 insertions, 0 deletions
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> |