blob: 2b2d930ba176418904433a4d1c2d4625f15d7386 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function doTest() {
document.getElementById('t').readOnly='ro';
document.documentElement.className='';
}
document.addEventListener("MozReftestInvalidate", doTest);
</script>
</head>
<!-- Test: if textarea is readonly, 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'>
<body>
<textarea class='notinvalid' id='t' required></textarea>
</body>
</html>
|