blob: e079e0305e8bb7ba4bcfc86194e1ec99e8f7dd67 [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="runRepaintAndPixelTest()">
<table>
<tr id="target">
<td>
</td>
</tr>
</table>
</body>
</html>