blob: f269a8edf9d01ea4f4b6dbde237a8a2f5c0c4c79 [file] [log] [blame]
<html>
<head>
<title>Test for crbug.com/357291</title>
<script src="../resources/text-based-repaint.js" type="text/javascript"></script>
<script type="text/javascript">
function repaintTest()
{
var first = document.getElementById('first');
first.style.backgroundColor = 'green';
}
</script>
<style>
table {
height: 200px;
width: 200px;
}
#first {
background-color: red;
}
</style>
</head>
<body onload="runRepaintAndPixelTest()">
<table>
<tr id="first">
<td>A</td>
<td>A</td>
<td>A</td>
</tr>
<tr>
<td>A</td>
<td>A</td>
<td>A</td>
</tr>
</table>
</body>
</html>