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