Index: third_party/WebKit/LayoutTests/paint/invalidation/table/row-change-background-rowspan-cell-expected.html |
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/table/row-change-background-rowspan-cell-expected.html b/third_party/WebKit/LayoutTests/paint/invalidation/table/row-change-background-rowspan-cell-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6b3208ae442c517cc6f4308edb23a4e778e6147b |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/table/row-change-background-rowspan-cell-expected.html |
@@ -0,0 +1,27 @@ |
+<!DOCTYPE html> |
+<style> |
+table { |
+ position:relative; |
+ top: 180px; |
+} |
+td { |
+ width: 50px; |
+ height: 50px; |
+} |
+</style> |
+<table> |
+ <tr> |
+ <td rowspan="2">1,1</td> |
+ <td>1,4</td> |
+ </tr> |
+ <tr> |
+ <td>2,3</td> |
+ </tr> |
+ <tr> |
+ <td rowspan="2" style="background-color: green">3,1</td> |
+ <td style="background-color: green">3,4</td> |
+ </tr> |
+ <tr> |
+ <td>4,4</td> |
+ </tr> |
+</table> |