Index: third_party/WebKit/LayoutTests/paint/invalidation/table/cached-cell-append-expected.html |
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/table/cached-cell-append-expected.html b/third_party/WebKit/LayoutTests/paint/invalidation/table/cached-cell-append-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bb1e0f7d6bdd904fee1a78622dbe2c80fc74d6cf |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/table/cached-cell-append-expected.html |
@@ -0,0 +1,19 @@ |
+<!-- |
+Calculating collapsed borders for big tables is expensive, so we cache them and recalculate when needed. |
+Here we append new cell, expect that cache is invalidated and paint produces expected image. |
+--> |
+<html> |
+ <head> |
+ <title></title> |
+ <link rel="stylesheet" href="../../../fast/table/border-collapsing/resources/cached.css"> |
+ </head> |
+ <body> |
+ <table style="border-collapse:collapse; border:2px solid blue"> |
+ <tr id="row"> |
+ <td style="border:4px solid lime"/> |
+ <td style="border: 6px solid yellow"/> |
+ </tr> |
+ </table> |
+ </body> |
+</html> |
+ |