Chromium Code Reviews| Index: LayoutTests/svg/custom/pattern-false-resource-cycle-expected.html |
| diff --git a/LayoutTests/svg/custom/pattern-false-resource-cycle-expected.html b/LayoutTests/svg/custom/pattern-false-resource-cycle-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..edf5fa5077fd9e625adf939e7a796ef1649da239 |
| --- /dev/null |
| +++ b/LayoutTests/svg/custom/pattern-false-resource-cycle-expected.html |
| @@ -0,0 +1,10 @@ |
| +<!DOCTYPE html> |
| +<svg> |
| + <clipPath id="c1"> |
| + <rect width="100" height="100"/> |
| + </clipPath> |
| + <pattern id="p1" width="1" height="1"> |
| + <rect width="100" height="100" fill="green"/> |
| + </pattern> |
| + <rect width="100" height="100" fill="url(#p1)" clip-path="url(#c1)"/> |
| +</svg> |