Index: third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-nonexisting-existing-local.html |
diff --git a/third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-nonexisting-existing-local.html b/third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-nonexisting-existing-local.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8be423b5d4d7612107af0383308b42c53e7cde41 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-nonexisting-existing-local.html |
@@ -0,0 +1,18 @@ |
+<!DOCTYPE html> |
+<style> |
+#target { |
+ width: 100px; |
+ height: 100px; |
+ background-color: green; |
+ -webkit-clip-path: url(notexisting.svg#c); |
+ clip-path: url(notexisting.svg#c); |
+} |
+</style> |
+<div style="background-color: red; width: 100px"> |
+ <div id="target"></div> |
+</div> |
+<svg> |
+ <clipPath id="c" clipPathUnits="objectBoundingBox"> |
+ <circle cx="0.5" cy="0.5" r="0.5"/> |
+ </clipPath> |
+</svg> |