Bug fix: now the JavaScript engine parse the ‘counter-clockwise’ value correctly.

Previously it expected ‘counterclockwise’.
This commit is contained in:
Marco Cecchetti
2012-07-05 19:17:26 +02:00
parent b0b7d169a0
commit ada5f5f507

View File

@@ -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