blob: 38f771b73f9bca7a926daa80d2bc8e267132fb4b [file] [log] [blame]
<!doctype html>
<script src="../resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
target.style.backgroundColor = 'lightBlue';
}
onload = runRepaintAndPixelTest;
</script>
<style>
td {
padding: 0 24px;
height: 64px;
}
</style>
Test passes if all of the cells in the table have a blue background.
<table>
<tbody id="target" style="will-change: transform">
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
</tr>
<tr style="will-change: transform">
<td>D</td>
<td style="will-change: transform">E</td>
<td>F</td>
</tr>
</tbody>
</table>