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

Unified Diff: LayoutTests/svg/css/resources/fragment-identifiers.svg

Issue 180973005: Respect SVG fragment identifiers in <img> src attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix ref image Created 6 years, 8 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
Index: LayoutTests/svg/css/resources/fragment-identifiers.svg
diff --git a/LayoutTests/svg/css/resources/fragment-identifiers.svg b/LayoutTests/svg/css/resources/fragment-identifiers.svg
new file mode 100644
index 0000000000000000000000000000000000000000..b5da61cd6e85f77e175bf022ba8e0ae362f6dd46
--- /dev/null
+++ b/LayoutTests/svg/css/resources/fragment-identifiers.svg
@@ -0,0 +1,9 @@
+<svg xmlns="http://www.w3.org/2000/svg">
+ <style type="text/css">
+ rect { display: none }
+ rect:target { display: inline }
+ </style>
+ <rect id="red" width="100%" height="100%" fill="red" />
+ <rect id="green" width="100%" height="100%" fill="green" />
+ <rect id="blue" width="100%" height="100%" fill="blue" />
+</svg>

Powered by Google App Engine
This is Rietveld 408576698