Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/svg/custom/resource-nesting-layout-cycle-2.html |
| diff --git a/third_party/WebKit/LayoutTests/svg/custom/resource-nesting-layout-cycle-2.html b/third_party/WebKit/LayoutTests/svg/custom/resource-nesting-layout-cycle-2.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..136207f44c63006a7948bcdcc5624ccd707ee414 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/svg/custom/resource-nesting-layout-cycle-2.html |
| @@ -0,0 +1,15 @@ |
| +<!DOCTYPE html> |
| +<html> |
| + <body> |
| + <svg width="100%" height="100%" mask="url(#m1)"> |
| + </svg> |
| + <svg> |
| + <pattern id="p1"> |
| + <mask id="m1"> |
| + <polyline fill="url(#p1)" stroke="black" points="176,153 126,77 129,95 100,227"/> |
| + </mask> |
| + </pattern> |
| + </svg> |
| + </body> |
| +</html> |
| + |