| Index: LayoutTests/svg/custom/pattern-directly-and-indirectly-referenced-expected.svg
|
| diff --git a/LayoutTests/svg/custom/pattern-directly-and-indirectly-referenced-expected.svg b/LayoutTests/svg/custom/pattern-directly-and-indirectly-referenced-expected.svg
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3aa71f4f0293e10e4f97814893f1ef8a4294d0c3
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/custom/pattern-directly-and-indirectly-referenced-expected.svg
|
| @@ -0,0 +1,12 @@
|
| +<svg xmlns="http://www.w3.org/2000/svg">
|
| + <pattern width="100%" height="100%" id="pattern" viewBox="0 0 100 100">
|
| + <rect width="100" height="100" fill="gray"/>
|
| + </pattern>
|
| + <pattern width="100%" height="100%" id="maskPattern" viewBox="0 0 100 100">
|
| + <rect width="100" height="100" fill="gray"/>
|
| + </pattern>
|
| + <mask id="mask">
|
| + <circle fill="url(#maskPattern)" cx="100" cy="100" r="100"/>
|
| + </mask>
|
| + <rect width="200" height="200" mask="url(#mask)" fill="url(#pattern)"/>
|
| +</svg>
|
|
|