blob: 869a89f2f34aec2892fd63c77187d1c7760dda95 [file] [log] [blame]
<style>
td { border: 5px solid black }
</style>
Should repaint collapsed borders when cells resize.
<table style="width: 300px; border-collapse: collapse">
<tr>
<td>A</td><td id="cell" style="width: 100px">B</td><td>C</td>
</tr>
</table>
<script src="../../../resources/run-after-layout-and-paint.js"></script>
<script>
runAfterLayoutAndPaint(function() {
cell.style.width = '200px';
}, true);
</script>