Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/paint/tables/composited-collapsed-table-borders.html |
| diff --git a/third_party/WebKit/LayoutTests/paint/tables/composited-collapsed-table-borders.html b/third_party/WebKit/LayoutTests/paint/tables/composited-collapsed-table-borders.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..413f0282563386b77585ab6257c8a269d4325b6d |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/paint/tables/composited-collapsed-table-borders.html |
| @@ -0,0 +1,16 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +td { |
| + border: 1px solid blue; |
| + overflow: auto; |
| + min-width: 276px; |
| + will-change: transform; |
| +} |
| +</style> |
| +<p>Passes if blue borders are visible surrounding B's cell. |
| +<table style="border-collapse: collapse;"> |
| + <tr> |
| + <td id="a">A</td> |
| + <td id="b">B</td> |
| + </tr> |
| +</table> |