Community
Participate
Working Groups
Build Identifier: The js-file for the VMLCanvas contains a small typo-error for the following method. A fix is attached. old: bezierCurveTo : function( cpx1, cpy1, cpx2, cpy2, x, y ) { this._currentPath.push( { "type" : 'bezierCurveTo', "cp1x" : cp1x, "cp1y" : cp1y, "cp2x" : cp2x, "cp2y" : cp2y, "x" : x, "y" : y } ); }, new: bezierCurveTo : function( cpx1, cpy1, cpx2, cpy2, x, y ) { this._currentPath.push( { "type" : 'bezierCurveTo', "cp1x" : cpx1, "cp1y" : cpy1, "cp2x" : cpx2, "cp2y" : cpy2, "x" : x, "y" : y } ); }, Reproducible: Always
Fixed in CVS HEAD.