blob: c4121a61eedea91e3650a49a9b892f7f164fbc93 [file] [log] [blame]
<!DOCTYPE html>
<style>
td { border: 2px solid blue; }
</style>
<table style="width: 200px; height: 200px; border-collapse: collapse">
<col id="col" style="background: red; visibility: hidden">
<tr>
<td style="visibility: visible"></td>
</tr>
<tr>
<td></td>
</tr>
</table>
<script src="../resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
col.style.background = 'green';
}
onload = runRepaintAndPixelTest;
</script>