diff options
Diffstat (limited to 'layout/reftests/css-ui-invalid/default-style/select-focus.html')
-rw-r--r-- | layout/reftests/css-ui-invalid/default-style/select-focus.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/layout/reftests/css-ui-invalid/default-style/select-focus.html b/layout/reftests/css-ui-invalid/default-style/select-focus.html new file mode 100644 index 0000000000..946e078152 --- /dev/null +++ b/layout/reftests/css-ui-invalid/default-style/select-focus.html @@ -0,0 +1,13 @@ +<!DOCTYPE> +<html class="reftest-wait"> + <script> + function onloadHandler() + { + document.getElementById('e').setCustomValidity('foo'); + document.getElementById('e').focus(); + } + </script> + <body onload="onloadHandler();"> + <select id='e' onfocus="document.documentElement.className='';"></select> + </body> +</html> |