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

Unified Diff: LayoutTests/svg/stroke/non-scaling-stroke-css-text.svg

Issue 1072403010: SVG Text should respect non-scaling-stroke. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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/stroke/non-scaling-stroke-css-text.svg
diff --git a/LayoutTests/svg/stroke/non-scaling-stroke-css-text.svg b/LayoutTests/svg/stroke/non-scaling-stroke-css-text.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e60ea35218a4886c71675c4e5e0ee288f9f851cb
--- /dev/null
+++ b/LayoutTests/svg/stroke/non-scaling-stroke-css-text.svg
@@ -0,0 +1,18 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <style type="text/css" >
fs 2015/04/22 12:15:55 I don't see that this test really test much differ
Shanmuga Pandi 2015/04/22 13:08:35 removed this test file
+ <![CDATA[
+ #g-css {
+ transform: scale(2, 2);
+ }
+ #g-css * {
+ stroke:blue;
+ stroke-width:2;
+ fill:none;
+ vector-effect:non-scaling-stroke;
+ }
+ ]]>
+ </style>
+ <g id="g-css">
+ <text x="0" y="50" font-size="36">Hello</text>
+ </g>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698