Index: third_party/WebKit/LayoutTests/paint/invalidation/table/cached-cell-append.html |
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/table/cached-cell-append.html b/third_party/WebKit/LayoutTests/paint/invalidation/table/cached-cell-append.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..cf7a36b6acf2aa83df3979f619a007060cab3c1c |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/table/cached-cell-append.html |
@@ -0,0 +1,28 @@ |
+<!-- |
+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"> |
+ <script src="../resources/text-based-repaint.js"></script> |
+ <script type="text/javascript"> |
+ function repaintTest() { |
+ newCell = document.createElement("td"); |
+ newCell.style.borderWidth = "6px"; |
+ newCell.style.borderStyle = "solid"; |
+ newCell.style.borderColor = "yellow"; |
+ document.getElementById("row").appendChild(newCell); |
+ } |
+ </script> |
+ </head> |
+ <body onload="runRepaintAndPixelTest()"> |
+ <table style="border-collapse:collapse; border:2px solid blue"> |
+ <tr id="row"> |
+ <td style="border:4px solid lime"/> |
+ </tr> |
+ </table> |
+ </body> |
+</html> |
+ |