summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorMarco Cecchetti <mrcekets@gmail.com>2012-07-05 19:17:26 +0200
committerMarco Cecchetti <mrcekets@gmail.com>2012-07-15 11:51:47 +0200
commitada5f5f507b2816b32280742e16d9e54d4b10b98 (patch)
tree908b92de95a8f8f0a776311a812c96b537a308ce /filter
parentb0b7d169a062bf5c3e8b51d85620acce0b546086 (diff)
Bug fix: now the JavaScript engine parse the ‘counter-clockwise’ value correctly.
Previously it expected ‘counterclockwise’.
Diffstat (limited to 'filter')
-rw-r--r--filter/source/svg/presentation_engine.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/svg/presentation_engine.js b/filter/source/svg/presentation_engine.js
index 984eaef34fca..a5a3a3f0aa52 100644
--- a/filter/source/svg/presentation_engine.js
+++ b/filter/source/svg/presentation_engine.js
@@ -4117,9 +4117,9 @@ aColorSpaceOutMap = [ 'rgb', 'hsl' ];
var CLOCKWISE = 0;
var COUNTERCLOCKWISE = 1;
-aClockDirectionInMap = { 'clockwise': CLOCKWISE, 'counterclockwise': COUNTERCLOCKWISE };
+aClockDirectionInMap = { 'clockwise': CLOCKWISE, 'counter-clockwise': COUNTERCLOCKWISE };
-aClockDirectionOutMap = [ 'clockwise', 'counterclockwise' ];
+aClockDirectionOutMap = [ 'clockwise', 'counter-clockwise' ];
// Attribute Value Types