| Index: third_party/WebKit/LayoutTests/paint/invalidation/table/container-backgrounds-on-cell-resize-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/table/container-backgrounds-on-cell-resize-expected.html b/third_party/WebKit/LayoutTests/paint/invalidation/table/container-backgrounds-on-cell-resize-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3725b8ae3bbe5b5df668e35efb6d255dd4ca3c71
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/table/container-backgrounds-on-cell-resize-expected.html
|
| @@ -0,0 +1,25 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| + tr { height: 30px }
|
| +</style>
|
| +Should repaint the backgrounds of column (yellow), section (blue) and row (green) when cells resize.
|
| +<table id="table" style="width: 300px">
|
| + <colgroup>
|
| + <col style="background: yellow">
|
| + </colgroup>
|
| + <thead style="background: blue">
|
| + <tr>
|
| + <td>A</td><td style="width: 200px">B</td><td>C</td>
|
| + </tr>
|
| + </thead>
|
| + <tbody>
|
| + <tr style="background: green">
|
| + <td>A</td><td>B</td><td>C</td>
|
| + </tr>
|
| + </tbody>
|
| + <tfoot>
|
| + <tr>
|
| + <td>A</td><td>B</td><td>C</td>
|
| + </tr>
|
| + </tfoot>
|
| +</table>
|
|
|