Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/paint/invalidation/table/composited-table-background-composited-row.html |
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/table/composited-table-background-composited-row.html b/third_party/WebKit/LayoutTests/paint/invalidation/table/composited-table-background-composited-row.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6f725dc0b3ee7ea1c3634e45b1df28142be6ae8e |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/table/composited-table-background-composited-row.html |
| @@ -0,0 +1,27 @@ |
| +<!doctype html> |
| +<script src="../resources/text-based-repaint.js"></script> |
| +<script> |
| +function repaintTest() { |
| + target.style.backgroundColor = 'lightBlue'; |
| +} |
| +onload = runRepaintAndPixelTest; |
| +</script> |
| +<style> |
| +td { |
| + padding: 0 24px; |
| + height: 64px; |
| +} |
| +</style> |
| +Test passes if all of the cells in the second row of the table have a blue background. |
| +<table> |
|
wkorman
2016/11/16 20:15:46
This test is intended to validate your comment fro
|
| + <tr> |
| + <td>A</td> |
| + <td>B</td> |
| + <td>C</td> |
| + </tr> |
| + <tr id="target" style="will-change: transform; background-color: red"> |
| + <td>D</td> |
| + <td style="will-change: transform;">E</td> |
| + <td>F</td> |
| + </tr> |
| +</table> |