diff options
Diffstat (limited to 'layout/reftests/css-invalid/form/form-add-valid-with-no-element.html')
-rw-r--r-- | layout/reftests/css-invalid/form/form-add-valid-with-no-element.html | 21 |
1 files changed, 21 insertions, 0 deletions
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 000000000..1c2632fbc --- /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> |