mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
85611a7b6d
--HG-- extra : rebase_source : a22344ee1569f58f1f0a01017bfe0d46a6a14602
19 lines
572 B
HTML
19 lines
572 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function doTest() {
|
|
document.getElementById('t').disabled='true';
|
|
document.documentElement.className='';
|
|
}
|
|
document.addEventListener("MozReftestInvalidate", doTest);
|
|
</script>
|
|
</head>
|
|
<!-- Test: if textarea is disabled, it is barred from constraint validation
|
|
and should not be affected by :valid pseudo-class. -->
|
|
<link rel='stylesheet' type='text/css' href='style.css'>
|
|
<body>
|
|
<textarea class='notvalid' id='t'></textarea>
|
|
</body>
|
|
</html>
|