| Index: third_party/WebKit/LayoutTests/svg/clip-path/visible-nested-clip-path-as-hidden-use-element.html
|
| diff --git a/third_party/WebKit/LayoutTests/svg/clip-path/visible-nested-clip-path-as-hidden-use-element.html b/third_party/WebKit/LayoutTests/svg/clip-path/visible-nested-clip-path-as-hidden-use-element.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..08722655b943a51ca37fab0d37046a780be8e4fb
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/svg/clip-path/visible-nested-clip-path-as-hidden-use-element.html
|
| @@ -0,0 +1,13 @@
|
| +<!DOCTYPE html>
|
| +<svg>
|
| + <defs>
|
| + <rect id="rect" width="100" height="100" visibility="visible"/>
|
| + <clipPath id="clipClip">
|
| + <rect width="100" height="100"/>
|
| + </clipPath>
|
| + <clipPath id="clip" clip-path="url(#clipClip)">
|
| + <use visibility="hidden" xlink:href="#rect"/>
|
| + </clipPath>
|
| + </defs>
|
| + <rect height="400" width="400" fill="green" clip-path="url(#clip)"/>
|
| +</svg>
|
|
|