| Index: third_party/WebKit/LayoutTests/svg/clip-path/display-none-children.html
|
| diff --git a/third_party/WebKit/LayoutTests/svg/clip-path/display-none-children.html b/third_party/WebKit/LayoutTests/svg/clip-path/display-none-children.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3e29d8089243683bbd57808af616ab6a84c8f689
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/svg/clip-path/display-none-children.html
|
| @@ -0,0 +1,17 @@
|
| +<!DOCTYPE HTML>
|
| +<svg width="400" height="400">
|
| + <defs>
|
| + <rect id="clip1Shape" x="0" y="0" width="50" height="100"/>
|
| + <rect id="clip2Shape" x="50" y="0" width="50" height="100"/>
|
| + <!-- Should not contribute to the clip. -->
|
| + <rect id="clip3Shape" style="display:none" x="100" y="0" width="50" height="100"/>
|
| + <clipPath id="clipUnion">
|
| + <use xlink:href="#clip1Shape"/>
|
| + <use xlink:href="#clip2Shape"/>
|
| + <use xlink:href="#clip3Shape"/>
|
| + <!-- Should not contribute to the clip. -->
|
| + <rect style="display:none" x="150" y="0" width="50" height="100"/>
|
| + </clipPath>
|
| + </defs>
|
| + <rect width="300" height="100" clip-path="url(#clipUnion)" fill="green"/>
|
| +</svg>
|
|
|