blob: 9068bf5d654232319dcec339f8725d1b0ef850e1 [file] [log] [blame]
<!DOCTYPE html>
<script src="../resources/text-based-repaint.js"></script>
<table style="border: 1px solid green; border-collapse: collapse">
<tr style="will-change: transform; background-color: red">
<td id="target">Cell1</td>
<td>Cell2</td>
</tr>
</table>
<script>
onload = runRepaintAndPixelTest;
function repaintTest() {
target.style.background = "green";
}
</script>