Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Unified Diff: third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-nonexisting-existing-local.html

Issue 2174813003: Don't resolve non-local -webkit-clip-path references as local (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@svg-local-references
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-nonexisting-existing-local-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-nonexisting-existing-local-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698