blob: b1fae0ec482816bc2d39f6be6b4ec785cc713749 [file] [log] [blame]
<!-- Based on fast/repaint/textarea-set-disabled.html -->
<!DOCTYPE html>
<html>
<head>
<script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
<script>
function paintInvalidationTest()
{
document.getElementsByTagName('textarea')[0].disabled = true;
}
</script>
</head>
<body onload="runPaintInvalidationTest()">
<form>
<textarea style="font: 10px Ahem; width: 100px; height: 100px;"></textarea>
</form>
</body>
</html>