diff options
Diffstat (limited to 'layout/reftests/css-ui-invalid/select')
25 files changed, 336 insertions, 0 deletions
diff --git a/layout/reftests/css-ui-invalid/select/reftest.list b/layout/reftests/css-ui-invalid/select/reftest.list new file mode 100644 index 0000000000..87a045189d --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/reftest.list @@ -0,0 +1,17 @@ +needs-focus fuzzy-if(geckoview,0-8,0-1) == select-valid.html select-ref.html +fuzzy(0-1,0-3) needs-focus == select-invalid.html select-ref.html +fuzzy(0-2,0-5) needs-focus == select-invalid-reset.html select-required-ref.html +needs-focus == select-disabled.html select-disabled-ref.html +needs-focus == select-dyn-disabled.html select-disabled-ref.html +fuzzy(0-1,0-3) needs-focus == select-dyn-not-disabled.html select-ref.html +fuzzy(0-2,0-5) needs-focus == select-required-invalid-1.html select-required-ref.html +fuzzy(0-2,0-5) needs-focus == select-required-invalid-2.html select-required-ref.html +fuzzy(0-2,0-5) needs-focus == select-required-invalid-changed-1.html select-required-ref.html +fuzzy(0-2,0-5) needs-focus == select-required-invalid-changed-2.html select-required-ref.html +fuzzy(0-2,0-5) needs-focus == select-required-valid.html select-required-ref.html +needs-focus == select-required-multiple-invalid.html select-required-multiple-ref.html +fuzzy(0-1,0-1000) needs-focus == select-required-multiple-invalid-changed.html select-required-multiple-ref.html +needs-focus == select-required-multiple-valid.html select-required-multiple-ref.html +fuzzy-if(!Android,0-2,0-10) fuzzy-if(Android,0-9,0-1) needs-focus == select-disabled-fieldset-1.html select-fieldset-ref.html +fuzzy-if(!Android,0-2,0-10) fuzzy-if(Android,0-9,0-1) needs-focus == select-disabled-fieldset-2.html select-fieldset-ref.html +fuzzy(0-2,0-10) needs-focus == select-fieldset-legend.html select-fieldset-legend-ref.html diff --git a/layout/reftests/css-ui-invalid/select/select-disabled-fieldset-1.html b/layout/reftests/css-ui-invalid/select/select-disabled-fieldset-1.html new file mode 100644 index 0000000000..a1c8303716 --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-disabled-fieldset-1.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <!-- Test: if select has a disabled fieldset ancestor, it is barred from + constraint validation and should not be affected by :-moz-ui-invalid + pseudo-class. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <script> + function onLoadHandler() + { + var e = document.getElementById('s'); + e.setCustomValidity('foo'); + document.documentElement.className=''; + } + </script> + <body onload="onLoadHandler();"> + <fieldset disabled> + <fieldset> + <select class='notinvalid' id='s'></select> + </fieldset> + </fieldset> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-disabled-fieldset-2.html b/layout/reftests/css-ui-invalid/select/select-disabled-fieldset-2.html new file mode 100644 index 0000000000..e466e03050 --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-disabled-fieldset-2.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <!-- Test: if select has a disabled fieldset ancestor, it is barred from + constraint validation and should not be affected by :-moz-ui-invalid + pseudo-class. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <script> + function onloadHandler() + { + var e = document.getElementById('s'); + e.setCustomValidity('foo'); + var fieldsets = document.getElementsByTagName("fieldset"); + fieldsets[1].disabled = true; + fieldsets[0].disabled = false; + document.documentElement.className=''; + } + </script> + <body onload="onloadHandler();"> + <fieldset disabled> + <fieldset> + <select class='notinvalid' id='s'></select> + </fieldset> + </fieldset> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-disabled-ref.html b/layout/reftests/css-ui-invalid/select/select-disabled-ref.html new file mode 100644 index 0000000000..e3a228a897 --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-disabled-ref.html @@ -0,0 +1,6 @@ +<!DOCTYPE html> +<html> + <body> + <select disabled style="background-color: green;"></select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-disabled.html b/layout/reftests/css-ui-invalid/select/select-disabled.html new file mode 100644 index 0000000000..a38d8bca3c --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-disabled.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <!-- Test: if select is disabled, it is barred from constraint validation + and should not be affected by :-moz-ui-invalid pseudo-class. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <body onload="document.getElementById('s').setCustomValidity('foo'); document.documentElement.className='';"> + <select class='notinvalid' id='s' disabled></select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-dyn-disabled.html b/layout/reftests/css-ui-invalid/select/select-dyn-disabled.html new file mode 100644 index 0000000000..5fed3005d8 --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-dyn-disabled.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <!-- Test: if select is disabled and invalid, it is barred from constraint + validation and should not be affected by :-moz-ui-invalid pseudo-class. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <script> + function onLoadHandler() + { + var e = document.getElementById('s'); + e.setCustomValidity('foo'); + e.disabled = 'true'; + document.documentElement.className=''; + } + </script> + <body onload="onLoadHandler();"> + <select class='notinvalid' id='s'></select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-dyn-not-disabled.html b/layout/reftests/css-ui-invalid/select/select-dyn-not-disabled.html new file mode 100644 index 0000000000..bab99531b6 --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-dyn-not-disabled.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <!-- Test: if select is not disabled and invalid, it is candidate for + constraint validation and should be affected + by :-moz-ui-invalid pseudo-class. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <script> + function onLoadHandler() + { + var e = document.getElementById('s'); + e.setCustomValidity('foo'); + e.removeAttribute('disabled'); + document.documentElement.className=''; + } + </script> + <body onload="onLoadHandler();"> + <select class='invalid' id='s' disabled></select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-fieldset-legend-ref.html b/layout/reftests/css-ui-invalid/select/select-fieldset-legend-ref.html new file mode 100644 index 0000000000..5083cea90d --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-fieldset-legend-ref.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> + <body> + <fieldset> + <legend> + <select style="background-color: green;"></select> + </legend> + </fieldset> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-fieldset-legend.html b/layout/reftests/css-ui-invalid/select/select-fieldset-legend.html new file mode 100644 index 0000000000..3e76408ec5 --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-fieldset-legend.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <!-- Test: if select has a disabled fieldset ancestor, but is in the first + legend, it is not barred from constraint validation and should be + affected by :-moz-ui-invalid pseudo-class. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <script> + function onLoadHandler() + { + var e = document.getElementById('b'); + e.setCustomValidity('foo'); + document.documentElement.className=''; + } + </script> + <body onload="onLoadHandler();"> + <fieldset disabled> + <legend> + <select class='invalid' id='b'></select> + </legend> + </fieldset> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-fieldset-ref.html b/layout/reftests/css-ui-invalid/select/select-fieldset-ref.html new file mode 100644 index 0000000000..ca82a8022d --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-fieldset-ref.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> + <body> + <fieldset> + <fieldset> + <select disabled style="background-color: green;"></select> + </fieldset> + </fieldset> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-invalid-reset.html b/layout/reftests/css-ui-invalid/select/select-invalid-reset.html new file mode 100644 index 0000000000..8b8e7c6fda --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-invalid-reset.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <!-- Test: if select has a custom error, it should be affected by :-moz-ui-invalid + pseudo-class. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <body onload="document.getElementById('s').selectedIndex = 0; + document.forms[0].reset(); + document.documentElement.className='';"> + <form> + <select id='s' class='notinvalid' id='s' required> + <option value="">foo</option> + </select> + </form> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-invalid.html b/layout/reftests/css-ui-invalid/select/select-invalid.html new file mode 100644 index 0000000000..df3526dfce --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-invalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <!-- Test: if select has a custom error, it should be affected by :-moz-ui-invalid + pseudo-class. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <body onload="document.getElementById('s').setCustomValidity('foo'); + document.documentElement.className='';"> + <select class='invalid' id='s'></select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-ref.html b/layout/reftests/css-ui-invalid/select/select-ref.html new file mode 100644 index 0000000000..a28668557f --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-ref.html @@ -0,0 +1,6 @@ +<!DOCTYPE html> +<html> + <body> + <select style="background-color: green;"></select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-required-invalid-1.html b/layout/reftests/css-ui-invalid/select/select-required-invalid-1.html new file mode 100644 index 0000000000..064695c52f --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-required-invalid-1.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <!-- Test: if select is required and the selected option has an empty + string value and the selection didn't changed, + :-moz-ui-invalid should not apply. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <body> + <select class='notinvalid' required> + <option selected value="">foo</option> + </select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-required-invalid-2.html b/layout/reftests/css-ui-invalid/select/select-required-invalid-2.html new file mode 100644 index 0000000000..7a32805c95 --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-required-invalid-2.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <!-- Test: if select is required and the selected option has an empty + string value and the selection didn't changed, + :-moz-ui-invalid should not apply. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <body> + <select class='notinvalid' required> + <option value="">foo</option> + </select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-required-invalid-changed-1.html b/layout/reftests/css-ui-invalid/select/select-required-invalid-changed-1.html new file mode 100644 index 0000000000..e8f3142fcd --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-required-invalid-changed-1.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html class='reftest-wait'> + <!-- Test: if select is required and the selected option has an empty + string value and the selection did changed, + :-moz-ui-invalid should apply. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <body onload="document.getElementById('s').selectedIndex = 0; + document.documentElement.className = '';"> + <select id='s' class='invalid' required> + <option selected value="">foo</option> + </select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-required-invalid-changed-2.html b/layout/reftests/css-ui-invalid/select/select-required-invalid-changed-2.html new file mode 100644 index 0000000000..c57e38206f --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-required-invalid-changed-2.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html class='reftest-wait'> + <!-- Test: if select is required and the selected option has an empty + string value and the selection did changed, + :-moz-ui-invalid should apply. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <body onload="document.getElementById('s').selectedIndex = 0; + document.documentElement.className = '';"> + <select id='s' class='invalid' required> + <option value="">foo</option> + </select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-required-multiple-invalid-changed.html b/layout/reftests/css-ui-invalid/select/select-required-multiple-invalid-changed.html new file mode 100644 index 0000000000..547acaea6a --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-required-multiple-invalid-changed.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html class='reftest-wait'> + <!-- Test: if select is required, has all selected option value set to the + empty string, and the selection did changed, + :-moz-ui-invalid should apply. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <body onload="document.getElementById('s').options[0].selected = true; + document.getElementById('s').options[1].selected = true; + document.documentElement.className = '';"> + <select id='s' class='notinvalid' required multiple> + <option selected></option> + <option selected value="">foo</option> + </select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-required-multiple-invalid.html b/layout/reftests/css-ui-invalid/select/select-required-multiple-invalid.html new file mode 100644 index 0000000000..d59ee7ee62 --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-required-multiple-invalid.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <!-- Test: if select is required, has all selected option value set to the + empty string, and the selection did not changed, + :-moz-ui-invalid should not apply. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <body> + <select class='notinvalid' required multiple> + <option selected></option> + <option selected value="">foo</option> + </select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-required-multiple-ref.html b/layout/reftests/css-ui-invalid/select/select-required-multiple-ref.html new file mode 100644 index 0000000000..a9477333f8 --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-required-multiple-ref.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> + <link rel='stylesheet' type='text/css' href='style.css'> + <body> + <select multiple style="background-color: green;"> + <option selected></option> + <option selected value="">foo</option> + </select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-required-multiple-valid.html b/layout/reftests/css-ui-invalid/select/select-required-multiple-valid.html new file mode 100644 index 0000000000..8ae8b89b07 --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-required-multiple-valid.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <!-- Test: if select is required and has a selected option which has value + different from the empty string, :-moz-ui-invalid should not apply. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <body> + <select class='notinvalid' required multiple> + <option selected></option> + <option selected>foo</option> + </select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-required-ref.html b/layout/reftests/css-ui-invalid/select/select-required-ref.html new file mode 100644 index 0000000000..3c2bde80a0 --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-required-ref.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html> + <link rel='stylesheet' type='text/css' href='style.css'> + <body> + <select style="background-color: green;"> + <option selected value="">foo</option> + </selecT> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-required-valid.html b/layout/reftests/css-ui-invalid/select/select-required-valid.html new file mode 100644 index 0000000000..9fb309b19f --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-required-valid.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> + <!-- Test: if select is required and has a select option which has value + different from the empty string, :-moz-ui-invalid should not apply. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <body> + <select class='notinvalid' required> + <option selected>foo</option> + </select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/select-valid.html b/layout/reftests/css-ui-invalid/select/select-valid.html new file mode 100644 index 0000000000..268157b6eb --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/select-valid.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html> + <!-- Test: if select has no custom error and is not barred from constraint + validation, it should not be affected by :-moz-ui-invalid pseudo-class. --> + <link rel='stylesheet' type='text/css' href='style.css'> + <body> + <select class='notinvalid'></select> + </body> +</html> diff --git a/layout/reftests/css-ui-invalid/select/style.css b/layout/reftests/css-ui-invalid/select/style.css new file mode 100644 index 0000000000..e8561a2bd3 --- /dev/null +++ b/layout/reftests/css-ui-invalid/select/style.css @@ -0,0 +1,18 @@ +/* Override default style */ +select:-moz-ui-invalid { + box-shadow: none; +} + +select.notinvalid { + background-color: green; +} +select.notinvalid:-moz-ui-invalid { + background-color: red; +} + +select.invalid { + background-color: red; +} +select.invalid:-moz-ui-invalid { + background-color: green; +} |