| Index: LayoutTests/svg/custom/viewport-resource-inval-expected.svg
|
| diff --git a/LayoutTests/svg/custom/viewport-resource-inval-expected.svg b/LayoutTests/svg/custom/viewport-resource-inval-expected.svg
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..855af896545f0f15cd9678c0ceb94846ef6b026c
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/custom/viewport-resource-inval-expected.svg
|
| @@ -0,0 +1,25 @@
|
| +<svg id="svg" width="400" height="400" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
| + <defs>
|
| + <mask id="mask">
|
| + <rect width="25%" height="25%" fill="white"/>
|
| + </mask>
|
| +
|
| + <clipPath id="clip">
|
| + <rect x="27%" width="25%" height="25%"/>
|
| + </clipPath>
|
| +
|
| + <pattern id="pattern" patternUnits="userSpaceOnUse" x="0" y="0" width="800" height="800">
|
| + <rect x="54%" width="25%" height="25%" fill="green"/>
|
| + </pattern>
|
| + </defs>
|
| +
|
| + <rect width="25%" height="25%" fill="red"/>
|
| + <rect width="800" height="800" fill="green" mask="url(#mask)"/>
|
| +
|
| + <rect x="27%" width="25%" height="25%" fill="red"/>
|
| + <rect width="800" height="800" fill="green" clip-path="url(#clip)"/>
|
| +
|
| + <rect x="54%" width="25%" height="25%" fill="red"/>
|
| + <rect width="800" height="800" fill="url(#pattern)"/>
|
| +</svg>
|
| +
|
|
|