Index: third_party/WebKit/LayoutTests/paint/invalidation/table/collapsed-border-cell-resize.html |
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/table/collapsed-border-cell-resize.html b/third_party/WebKit/LayoutTests/paint/invalidation/table/collapsed-border-cell-resize.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f78a3e97c0b612996e358d1b64995aa457432b6f |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/table/collapsed-border-cell-resize.html |
@@ -0,0 +1,13 @@ |
+<!DOCTYPE html> |
+<table style="border-collapse: collapse"> |
+ <tr> |
+ <td id="target" style="width: 100px; height: 100px; border: 1px solid blue"></td> |
+ </tr> |
+</table> |
+<script src="../resources/text-based-repaint.js"></script> |
+<script> |
+function repaintTest() { |
+ target.style.height = '200px'; |
+} |
+onload = runRepaintAndPixelTest; |
+</script> |