| Index: third_party/WebKit/LayoutTests/paint/invalidation/compositing/column-span-under-composited-column-child.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/compositing/column-span-under-composited-column-child.html b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/column-span-under-composited-column-child.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d1c7d9d86222c9b32220261d206c959c92431f01
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/compositing/column-span-under-composited-column-child.html
|
| @@ -0,0 +1,15 @@
|
| +<!DOCTYPE html>
|
| +<div style="will-change: transform"></div>
|
| +<div style="columns: 2">
|
| + <div style="position: relative">
|
| + <div id="target" style="column-span: all; width: 100px; height: 100px; background-color: red"></div>
|
| + </div>
|
| +</div>
|
| +<script src="../resources/text-based-repaint.js"></script>
|
| +<script>
|
| +function repaintTest() {
|
| + target.style.backgroundColor = 'green';
|
| +}
|
| +onload = runRepaintAndPixelTest;
|
| +</script>
|
| +
|
|
|