mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-08 22:11:52 +00:00
20 lines
627 B
HTML
20 lines
627 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<!-- Test: if textarea 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 doTest()
|
|
{
|
|
var e = document.getElementById('t');
|
|
e.setCustomValidity('foo');
|
|
e.disabled = 'true';
|
|
document.documentElement.className='';
|
|
}
|
|
document.addEventListener("MozReftestInvalidate", doTest, false);
|
|
</script>
|
|
<body>
|
|
<textarea class='notinvalid' id='t'></textarea>
|
|
</body>
|
|
</html>
|