diff options
Diffstat (limited to 'layout/reftests/css-ui-valid/select/select-novalidate.html')
-rw-r--r-- | layout/reftests/css-ui-valid/select/select-novalidate.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layout/reftests/css-ui-valid/select/select-novalidate.html b/layout/reftests/css-ui-valid/select/select-novalidate.html new file mode 100644 index 000000000..54c951d70 --- /dev/null +++ b/layout/reftests/css-ui-valid/select/select-novalidate.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <link rel='stylesheet' type='text/css' href='style.css'> + <body onload="document.getElementById('s').selectedIndex = 0; + document.documentElement.className = '';"> + <form novalidate> + <select id='s' class='notvalid'> + <option>foo</option> + </select> + </form> + </body> +</html> |