gecko/layout/reftests/css-invalid/select/select-dyn-disabled.html

22 lines
605 B
HTML

<!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 :invalid pseudo-class. -->
<style>
select { background-color: green; }
select:invalid { background-color: red; }
</style>
<script>
function onLoadHandler()
{
var e = document.getElementById('s');
e.setCustomValidity('foo');
e.disabled = 'true';
document.documentElement.className='';
}
</script>
<body onload="onLoadHandler();">
<select id='s'></select>
</body>
</html>