mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
576 B
HTML
19 lines
576 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<!-- Test: if button is disabled and invalid, it is barred from constraint
|
|
validation and should not be affected by :invalid pseudo-class. -->
|
|
<link rel='stylesheet' type='text/css' href='style.css'>
|
|
<script>
|
|
function onLoadHandler()
|
|
{
|
|
var e = document.getElementById('b');
|
|
e.setCustomValidity('foo');
|
|
e.disabled = 'true';
|
|
document.documentElement.className='';
|
|
}
|
|
</script>
|
|
<body onload="onLoadHandler();">
|
|
<button class='notinvalid' id='b'></button>
|
|
</body>
|
|
</html>
|