| Index: third_party/WebKit/LayoutTests/svg/clip-path/nested-empty-clip.html
|
| diff --git a/third_party/WebKit/LayoutTests/svg/clip-path/nested-empty-clip.html b/third_party/WebKit/LayoutTests/svg/clip-path/nested-empty-clip.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c17371432085f703d9625091d58aaef13540ccd4
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/svg/clip-path/nested-empty-clip.html
|
| @@ -0,0 +1,11 @@
|
| +<!DOCTYPE html>
|
| +<svg>
|
| + <clipPath id="nested">
|
| + <path d="M0,0h100z"/>
|
| + </clipPath>
|
| + <clipPath id="clip" clip-path="url(#nested)">
|
| + <rect width="100" height="100"/>
|
| + </clipPath>
|
| + <rect width="100" height="100" fill="green"/>
|
| + <rect width="200" height="100" fill="red" clip-path="url(#clip)"/>
|
| +</svg>
|
|
|