From ada5f5f507b2816b32280742e16d9e54d4b10b98 Mon Sep 17 00:00:00 2001 From: Marco Cecchetti Date: Thu, 5 Jul 2012 19:17:26 +0200 Subject: [PATCH] =?UTF-8?q?Bug=20fix:=20now=20the=20JavaScript=20engine=20?= =?UTF-8?q?parse=20the=20=E2=80=98counter-clockwise=E2=80=99=20value=20cor?= =?UTF-8?q?rectly.=20Previously=20it=20expected=20=E2=80=98counterclockwis?= =?UTF-8?q?e=E2=80=99.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- filter/source/svg/presentation_engine.js | 4 ++-- 1 file 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