diff options
Diffstat (limited to 'layout/reftests/css-optional/css-optional-dyn-1.html')
-rw-r--r-- | layout/reftests/css-optional/css-optional-dyn-1.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/css-optional/css-optional-dyn-1.html b/layout/reftests/css-optional/css-optional-dyn-1.html new file mode 100644 index 0000000000..8b02ad7190 --- /dev/null +++ b/layout/reftests/css-optional/css-optional-dyn-1.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <!-- Test: Remove the required attribute to an input element + to make it optional. --> + <link rel='stylesheet' type='text/css' href='css-optional-style.css'> + + <script type="text/javascript"> + function removeRequired() + { + document.getElementById('i').removeAttribute('required'); + } + function disableReftestWait() + { + document.documentElement.className = ''; + } + </script> + + <body onload="removeRequired(); disableReftestWait();"> + <input id="i" required> + </body> +</html> |