mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
605 B
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>
|