blob: dc8629997c26c3d0d840451adcc08f49abc74918 [file] [log] [blame]
<html>
<head>
<title>Test for http://bugs.webkit.org/show_bug.cgi?id=14056</title>
<script src="resources/text-based-repaint.js" type="text/javascript"></script>
<script type="text/javascript">
function repaintTest()
{
var div = document.getElementById("target");
div.className = "green";
}
</script>
<style>
tr {
background-color: red;
}
td {
width: 100px;
height: 100px;
}
.green {
background-color:green;
min-height: 500px;
}
</style>
</head>
<body onload="runRepaintTest()">
<table>
<tr id="target">
<td>
</td>
</tr>
</table>
</body>
</html>