Index: third_party/WebKit/LayoutTests/paint/invalidation/table/composited-table-background-col-span-initial-empty.html |
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/table/composited-table-background-col-span-initial-empty.html b/third_party/WebKit/LayoutTests/paint/invalidation/table/composited-table-background-col-span-initial-empty.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..51c6b47b3011d52bd55cdbb6b51ac8a5f91d1090 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/table/composited-table-background-col-span-initial-empty.html |
@@ -0,0 +1,31 @@ |
+<!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 second and third columns of the table have a blue background. |
+<table> |
+ <colgroup> |
+ <col> |
+ <col id="target" span="2"> |
+ </colgroup> |
+ <tr> |
+ <td>A</td> |
+ <td>B</td> |
+ <td>C</td> |
+ </tr> |
+ <tr> |
+ <td>D</td> |
+ <td style="will-change: transform">E</td> |
+ <td style="will-change: transform">F</td> |
+ </tr> |
+</table> |