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

Unified Diff: Source/core/svg/SVGAngle.h

Issue 303263008: [SVG2] Add support for the 'turn' unit in <angle>. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add reftest Created 6 years, 7 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: Source/core/svg/SVGAngle.h
diff --git a/Source/core/svg/SVGAngle.h b/Source/core/svg/SVGAngle.h
index 9f23b64c123f2b05668f52c6eac7b6a463e7f682..4f63310bc4ca3b11b632eab2bf6fac0e155799c8 100644
--- a/Source/core/svg/SVGAngle.h
+++ b/Source/core/svg/SVGAngle.h
@@ -67,7 +67,8 @@ public:
SVG_ANGLETYPE_UNSPECIFIED = 1,
SVG_ANGLETYPE_DEG = 2,
SVG_ANGLETYPE_RAD = 3,
- SVG_ANGLETYPE_GRAD = 4
+ SVG_ANGLETYPE_GRAD = 4,
+ SVG_ANGLETYPE_TURN = 5
fs 2014/06/02 12:49:39 Should this be exposed on the DOM SVGAngle interfa
Erik Dahlström (inactive) 2014/06/03 15:30:29 Will raise this in the WG, but I think we should s
};
static PassRefPtr<SVGAngle> create()

Powered by Google App Engine
This is Rietveld 408576698