Chromium Code Reviews| 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..e8d45b58605dca893540fcd1616e0b39bfce2f76 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/table/collapsed-border-cell-resize.html |
| @@ -0,0 +1,13 @@ |
| +<!DOCTYPE html> |
| +<table style="collapse-border: collapse"> |
|
wkorman
2016/11/28 21:21:25
Doesn't it have to be border-collapse: rather than
Xianzhu
2016/11/28 21:34:00
Good catch. Fixed.
|
| + <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> |