| Index: third_party/WebKit/LayoutTests/css3/masking/clip-path-columns-shape.html
|
| diff --git a/third_party/WebKit/LayoutTests/css3/masking/clip-path-columns-shape.html b/third_party/WebKit/LayoutTests/css3/masking/clip-path-columns-shape.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..05fa9e893fa734c933a58cdd46c14e31b25634d9
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/css3/masking/clip-path-columns-shape.html
|
| @@ -0,0 +1,14 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +body { margin: 0; }
|
| +.clipped {
|
| + background-color: green;
|
| + border: 5px solid red;
|
| + -webkit-clip-path: inset(5px);
|
| + clip-path: inset(5px);
|
| +}
|
| +</style>
|
| +<div style="columns: 2; column-gap: 0; width: 200px; height: 100px">
|
| + <div style="height: 100px"></div>
|
| + <div style="height: 90px" class="clipped"></div>
|
| +</div>
|
|
|