Index: third_party/WebKit/LayoutTests/paint/invalidation/table/composited-cell-collapsed-border-add-anonymous.html |
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/table/composited-cell-collapsed-border-add-anonymous.html b/third_party/WebKit/LayoutTests/paint/invalidation/table/composited-cell-collapsed-border-add-anonymous.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..680d57482d2ffb11150aa51409a2817bc53f3eb2 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/table/composited-cell-collapsed-border-add-anonymous.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
+<style> |
+td { will-change: transform; } |
+</style> |
+Passes if no crash. |
+<table id="table" style="border-collapse: collapse"> |
+ <tr> |
+ <td style="border: 4px solid pink"></td> |
+ <td></td> |
+ </tr> |
+</table> |
+<script src="../../../resources/run-after-layout-and-paint.js"></script> |
+<script> |
+if (window.testRunner) |
+ testRunner.dumpAsText(); |
+runAfterLayoutAndPaint(function() { |
+ table.appendChild(document.createTextNode("A")); |
+}, true); |
+</script> |