<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; }
#msg dl a { font-weight: bold}
#msg dl a:link { color:#fc3; }
#msg dl a:active { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[23951] trunk/WebCore</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/23951">23951</a></dd>
<dt>Author</dt> <dd>weinig</dd>
<dt>Date</dt> <dd>2007-07-03 13:46:44 -0700 (Tue, 03 Jul 2007)</dd>
</dl>
<h3>Log Message</h3>
<pre> Reviewed by Oliver.
Eighth round of fixes for implicit 64-32 bit conversion errors.
<rdar://problem/5292262>
- Convert SVG implementation files to use floats instead of doubles
to match the spec/IDLs.
* bindings/scripts/CodeGeneratorJS.pm:
* ksvg2/svg/SVGAngle.cpp:
* ksvg2/svg/SVGAnimatedTemplate.h:
* ksvg2/svg/SVGAnimationElement.cpp:
(WebCore::SVGAnimationElement::getEndTime):
(WebCore::SVGAnimationElement::getStartTime):
(WebCore::SVGAnimationElement::getCurrentTime):
(WebCore::SVGAnimationElement::getSimpleDuration):
* ksvg2/svg/SVGAnimationElement.h:
* ksvg2/svg/SVGFitToViewBox.cpp:
(WebCore::SVGFitToViewBox::parseViewBox):
* ksvg2/svg/SVGLength.cpp:
(WebCore::SVGLength::setValueAsString):
* ksvg2/svg/SVGLinearGradientElement.cpp:
(WebCore::SVGLinearGradientElement::buildGradient):
* ksvg2/svg/SVGMatrix.idl:
* ksvg2/svg/SVGNumber.idl:
* ksvg2/svg/SVGParserUtilities.cpp:
(WebCore::SVGPathParser::parseSVG):
(WebCore::SVGPathParser::calculateArc):
(WebCore::SVGPathParser::svgLineToHorizontal):
(WebCore::SVGPathParser::svgLineToVertical):
(WebCore::SVGPathParser::svgCurveToCubicSmooth):
(WebCore::SVGPathParser::svgCurveToQuadratic):
(WebCore::SVGPathParser::svgCurveToQuadraticSmooth):
(WebCore::SVGPathParser::svgArcTo):
* ksvg2/svg/SVGParserUtilities.h:
* ksvg2/svg/SVGPathElement.cpp:
(WebCore::SVGPathElement::SVGPathElement):
(WebCore::SVGPathElement::getTotalLength):
(WebCore::SVGPathElement::getPointAtLength):
(WebCore::SVGPathElement::getPathSegAtLength):
(WebCore::SVGPathElement::createSVGPathSegMovetoAbs):
(WebCore::SVGPathElement::createSVGPathSegMovetoRel):
(WebCore::SVGPathElement::createSVGPathSegLinetoAbs):
(WebCore::SVGPathElement::createSVGPathSegLinetoRel):
(WebCore::SVGPathElement::createSVGPathSegCurvetoCubicAbs):
(WebCore::SVGPathElement::createSVGPathSegCurvetoCubicRel):
(WebCore::SVGPathElement::createSVGPathSegCurvetoQuadraticAbs):
(WebCore::SVGPathElement::createSVGPathSegCurvetoQuadraticRel):
(WebCore::SVGPathElement::createSVGPathSegArcAbs):
(WebCore::SVGPathElement::createSVGPathSegArcRel):
(WebCore::SVGPathElement::createSVGPathSegLinetoHorizontalAbs):
(WebCore::SVGPathElement::createSVGPathSegLinetoHorizontalRel):
(WebCore::SVGPathElement::createSVGPathSegLinetoVerticalAbs):
(WebCore::SVGPathElement::createSVGPathSegLinetoVerticalRel):
(WebCore::SVGPathElement::createSVGPathSegCurvetoCubicSmoothAbs):
(WebCore::SVGPathElement::createSVGPathSegCurvetoCubicSmoothRel):
(WebCore::SVGPathElement::createSVGPathSegCurvetoQuadraticSmoothAbs):
(WebCore::SVGPathElement::createSVGPathSegCurvetoQuadraticSmoothRel):
(WebCore::SVGPathElement::svgMoveTo):
(WebCore::SVGPathElement::svgLineTo):
(WebCore::SVGPathElement::svgLineToHorizontal):
(WebCore::SVGPathElement::svgLineToVertical):
(WebCore::SVGPathElement::svgCurveToCubic):
(WebCore::SVGPathElement::svgCurveToCubicSmooth):
(WebCore::SVGPathElement::svgCurveToQuadratic):
(WebCore::SVGPathElement::svgCurveToQuadraticSmooth):
(WebCore::SVGPathElement::svgArcTo):
(WebCore::SVGPathElement::parseMappedAttribute):
* ksvg2/svg/SVGPathElement.h:
* ksvg2/svg/SVGPathSegArc.cpp:
(WebCore::SVGPathSegArcAbs::SVGPathSegArcAbs):
(WebCore::SVGPathSegArcAbs::setX):
(WebCore::SVGPathSegArcAbs::x):
(WebCore::SVGPathSegArcAbs::setY):
(WebCore::SVGPathSegArcAbs::y):
(WebCore::SVGPathSegArcAbs::setR1):
(WebCore::SVGPathSegArcAbs::r1):
(WebCore::SVGPathSegArcAbs::setR2):
(WebCore::SVGPathSegArcAbs::r2):
(WebCore::SVGPathSegArcAbs::setAngle):
(WebCore::SVGPathSegArcAbs::angle):
(WebCore::SVGPathSegArcRel::SVGPathSegArcRel):
(WebCore::SVGPathSegArcRel::setX):
(WebCore::SVGPathSegArcRel::x):
(WebCore::SVGPathSegArcRel::setY):
(WebCore::SVGPathSegArcRel::y):
(WebCore::SVGPathSegArcRel::setR1):
(WebCore::SVGPathSegArcRel::r1):
(WebCore::SVGPathSegArcRel::setR2):
(WebCore::SVGPathSegArcRel::r2):
(WebCore::SVGPathSegArcRel::setAngle):
(WebCore::SVGPathSegArcRel::angle):
* ksvg2/svg/SVGPathSegArc.h:
* ksvg2/svg/SVGPathSegCurvetoCubic.cpp:
(WebCore::SVGPathSegCurvetoCubicAbs::SVGPathSegCurvetoCubicAbs):
(WebCore::SVGPathSegCurvetoCubicAbs::setX):
(WebCore::SVGPathSegCurvetoCubicAbs::x):
(WebCore::SVGPathSegCurvetoCubicAbs::setY):
(WebCore::SVGPathSegCurvetoCubicAbs::y):
(WebCore::SVGPathSegCurvetoCubicAbs::setX1):
(WebCore::SVGPathSegCurvetoCubicAbs::x1):
(WebCore::SVGPathSegCurvetoCubicAbs::setY1):
(WebCore::SVGPathSegCurvetoCubicAbs::y1):
(WebCore::SVGPathSegCurvetoCubicAbs::setX2):
(WebCore::SVGPathSegCurvetoCubicAbs::x2):
(WebCore::SVGPathSegCurvetoCubicAbs::setY2):
(WebCore::SVGPathSegCurvetoCubicAbs::y2):
(WebCore::SVGPathSegCurvetoCubicRel::SVGPathSegCurvetoCubicRel):
(WebCore::SVGPathSegCurvetoCubicRel::setX):
(WebCore::SVGPathSegCurvetoCubicRel::x):
(WebCore::SVGPathSegCurvetoCubicRel::setY):
(WebCore::SVGPathSegCurvetoCubicRel::y):
(WebCore::SVGPathSegCurvetoCubicRel::setX1):
(WebCore::SVGPathSegCurvetoCubicRel::x1):
(WebCore::SVGPathSegCurvetoCubicRel::setY1):
(WebCore::SVGPathSegCurvetoCubicRel::y1):
(WebCore::SVGPathSegCurvetoCubicRel::setX2):
(WebCore::SVGPathSegCurvetoCubicRel::x2):
(WebCore::SVGPathSegCurvetoCubicRel::setY2):
(WebCore::SVGPathSegCurvetoCubicRel::y2):
* ksvg2/svg/SVGPathSegCurvetoCubic.h:
* ksvg2/svg/SVGPathSegCurvetoCubicSmooth.cpp:
(WebCore::SVGPathSegCurvetoCubicSmoothAbs::SVGPathSegCurvetoCubicSmoothAbs):
(WebCore::SVGPathSegCurvetoCubicSmoothAbs::setX):
(WebCore::SVGPathSegCurvetoCubicSmoothAbs::x):
(WebCore::SVGPathSegCurvetoCubicSmoothAbs::setY):
(WebCore::SVGPathSegCurvetoCubicSmoothAbs::y):
(WebCore::SVGPathSegCurvetoCubicSmoothAbs::setX2):
(WebCore::SVGPathSegCurvetoCubicSmoothAbs::x2):
(WebCore::SVGPathSegCurvetoCubicSmoothAbs::setY2):
(WebCore::SVGPathSegCurvetoCubicSmoothAbs::y2):
(WebCore::SVGPathSegCurvetoCubicSmoothRel::SVGPathSegCurvetoCubicSmoothRel):
(WebCore::SVGPathSegCurvetoCubicSmoothRel::setX):
(WebCore::SVGPathSegCurvetoCubicSmoothRel::x):
(WebCore::SVGPathSegCurvetoCubicSmoothRel::setY):
(WebCore::SVGPathSegCurvetoCubicSmoothRel::y):
(WebCore::SVGPathSegCurvetoCubicSmoothRel::setX2):
(WebCore::SVGPathSegCurvetoCubicSmoothRel::x2):
(WebCore::SVGPathSegCurvetoCubicSmoothRel::setY2):
(WebCore::SVGPathSegCurvetoCubicSmoothRel::y2):
* ksvg2/svg/SVGPathSegCurvetoCubicSmooth.h:
* ksvg2/svg/SVGPathSegCurvetoQuadratic.cpp:
(WebCore::SVGPathSegCurvetoQuadraticAbs::SVGPathSegCurvetoQuadraticAbs):
(WebCore::SVGPathSegCurvetoQuadraticAbs::setX):
(WebCore::SVGPathSegCurvetoQuadraticAbs::x):
(WebCore::SVGPathSegCurvetoQuadraticAbs::setY):
(WebCore::SVGPathSegCurvetoQuadraticAbs::y):
(WebCore::SVGPathSegCurvetoQuadraticAbs::setX1):
(WebCore::SVGPathSegCurvetoQuadraticAbs::x1):
(WebCore::SVGPathSegCurvetoQuadraticAbs::setY1):
(WebCore::SVGPathSegCurvetoQuadraticAbs::y1):
(WebCore::SVGPathSegCurvetoQuadraticRel::SVGPathSegCurvetoQuadraticRel):
(WebCore::SVGPathSegCurvetoQuadraticRel::setX):
(WebCore::SVGPathSegCurvetoQuadraticRel::x):
(WebCore::SVGPathSegCurvetoQuadraticRel::setY):
(WebCore::SVGPathSegCurvetoQuadraticRel::y):
(WebCore::SVGPathSegCurvetoQuadraticRel::setX1):
(WebCore::SVGPathSegCurvetoQuadraticRel::x1):
(WebCore::SVGPathSegCurvetoQuadraticRel::setY1):
(WebCore::SVGPathSegCurvetoQuadraticRel::y1):
* ksvg2/svg/SVGPathSegCurvetoQuadratic.h:
(WebCore::SVGPathSegCurvetoQuadraticRel::toString):
* ksvg2/svg/SVGPathSegCurvetoQuadraticSmooth.cpp:
(WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::SVGPathSegCurvetoQuadraticSmoothAbs):
(WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::setX):
(WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::x):
(WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::setY):
(WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::y):
(WebCore::SVGPathSegCurvetoQuadraticSmoothRel::SVGPathSegCurvetoQuadraticSmoothRel):
(WebCore::SVGPathSegCurvetoQuadraticSmoothRel::setX):
(WebCore::SVGPathSegCurvetoQuadraticSmoothRel::x):
(WebCore::SVGPathSegCurvetoQuadraticSmoothRel::setY):
(WebCore::SVGPathSegCurvetoQuadraticSmoothRel::y):
* ksvg2/svg/SVGPathSegCurvetoQuadraticSmooth.h:
* ksvg2/svg/SVGPathSegLineto.cpp:
(WebCore::SVGPathSegLinetoAbs::SVGPathSegLinetoAbs):
(WebCore::SVGPathSegLinetoAbs::setX):
(WebCore::SVGPathSegLinetoAbs::x):
(WebCore::SVGPathSegLinetoAbs::setY):
(WebCore::SVGPathSegLinetoAbs::y):
(WebCore::SVGPathSegLinetoRel::SVGPathSegLinetoRel):
(WebCore::SVGPathSegLinetoRel::setX):
(WebCore::SVGPathSegLinetoRel::x):
(WebCore::SVGPathSegLinetoRel::setY):
(WebCore::SVGPathSegLinetoRel::y):
* ksvg2/svg/SVGPathSegLineto.h:
* ksvg2/svg/SVGPathSegLinetoHorizontal.cpp:
(WebCore::SVGPathSegLinetoHorizontalAbs::SVGPathSegLinetoHorizontalAbs):
(WebCore::SVGPathSegLinetoHorizontalAbs::setX):
(WebCore::SVGPathSegLinetoHorizontalAbs::x):
(WebCore::SVGPathSegLinetoHorizontalRel::SVGPathSegLinetoHorizontalRel):
(WebCore::SVGPathSegLinetoHorizontalRel::setX):
(WebCore::SVGPathSegLinetoHorizontalRel::x):
* ksvg2/svg/SVGPathSegLinetoHorizontal.h:
* ksvg2/svg/SVGPathSegLinetoVertical.cpp:
(WebCore::SVGPathSegLinetoVerticalAbs::SVGPathSegLinetoVerticalAbs):
(WebCore::SVGPathSegLinetoVerticalAbs::setY):
(WebCore::SVGPathSegLinetoVerticalAbs::y):
(WebCore::SVGPathSegLinetoVerticalRel::SVGPathSegLinetoVerticalRel):
(WebCore::SVGPathSegLinetoVerticalRel::setY):
(WebCore::SVGPathSegLinetoVerticalRel::y):
* ksvg2/svg/SVGPathSegLinetoVertical.h:
* ksvg2/svg/SVGPathSegList.cpp:
(WebCore::SVGPathSegList::getPathSegAtLength):
* ksvg2/svg/SVGPathSegList.h:
* ksvg2/svg/SVGPathSegMoveto.cpp:
(WebCore::SVGPathSegMovetoAbs::SVGPathSegMovetoAbs):
(WebCore::SVGPathSegMovetoAbs::setX):
(WebCore::SVGPathSegMovetoAbs::x):
(WebCore::SVGPathSegMovetoAbs::setY):
(WebCore::SVGPathSegMovetoAbs::y):
(WebCore::SVGPathSegMovetoRel::SVGPathSegMovetoRel):
(WebCore::SVGPathSegMovetoRel::setX):
(WebCore::SVGPathSegMovetoRel::x):
(WebCore::SVGPathSegMovetoRel::setY):
(WebCore::SVGPathSegMovetoRel::y):
* ksvg2/svg/SVGPathSegMoveto.h:
* ksvg2/svg/SVGPolyElement.cpp:
(WebCore::SVGPolyElement::svgPolyTo):
* ksvg2/svg/SVGRadialGradientElement.cpp:
(WebCore::SVGRadialGradientElement::buildGradient):
* ksvg2/svg/SVGSVGElement.cpp:
(WebCore::SVGSVGElement::viewport):
(WebCore::SVGSVGElement::getCurrentTime):
* ksvg2/svg/SVGStopElement.cpp:
(WebCore::SVGStopElement::SVGStopElement):
(WebCore::SVGStopElement::parseMappedAttribute):
* ksvg2/svg/SVGStopElement.h:
* ksvg2/svg/SVGTransform.cpp:
(SVGTransform::translate):
(SVGTransform::scale):
* ksvg2/svg/SVGTransformDistance.cpp:
(WebCore::SVGTransformDistance::addToSVGTransform):
(WebCore::SVGTransformDistance::distance):
* ksvg2/svg/SVGTransformable.cpp:
(WebCore::SVGTransformable::parseTransformAttribute):</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkWebCoreChangeLog">trunk/WebCore/ChangeLog</a></li>
<li><a href="#trunkWebCoreWebCorexcodeprojprojectpbxproj">trunk/WebCore/WebCore.xcodeproj/project.pbxproj</a></li>
<li><a href="#trunkWebCorebindingsscriptsCodeGeneratorJSpm">trunk/WebCore/bindings/scripts/CodeGeneratorJS.pm</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGAnglecpp">trunk/WebCore/ksvg2/svg/SVGAngle.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGAnimatedTemplateh">trunk/WebCore/ksvg2/svg/SVGAnimatedTemplate.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGAnimationElementcpp">trunk/WebCore/ksvg2/svg/SVGAnimationElement.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGAnimationElementh">trunk/WebCore/ksvg2/svg/SVGAnimationElement.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGFitToViewBoxcpp">trunk/WebCore/ksvg2/svg/SVGFitToViewBox.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGLengthcpp">trunk/WebCore/ksvg2/svg/SVGLength.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGLinearGradientElementcpp">trunk/WebCore/ksvg2/svg/SVGLinearGradientElement.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGMatrixidl">trunk/WebCore/ksvg2/svg/SVGMatrix.idl</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGNumberidl">trunk/WebCore/ksvg2/svg/SVGNumber.idl</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGParserUtilitiescpp">trunk/WebCore/ksvg2/svg/SVGParserUtilities.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGParserUtilitiesh">trunk/WebCore/ksvg2/svg/SVGParserUtilities.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathElementcpp">trunk/WebCore/ksvg2/svg/SVGPathElement.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathElementh">trunk/WebCore/ksvg2/svg/SVGPathElement.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegArccpp">trunk/WebCore/ksvg2/svg/SVGPathSegArc.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegArch">trunk/WebCore/ksvg2/svg/SVGPathSegArc.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegCurvetoCubiccpp">trunk/WebCore/ksvg2/svg/SVGPathSegCurvetoCubic.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegCurvetoCubich">trunk/WebCore/ksvg2/svg/SVGPathSegCurvetoCubic.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegCurvetoCubicSmoothcpp">trunk/WebCore/ksvg2/svg/SVGPathSegCurvetoCubicSmooth.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegCurvetoCubicSmoothh">trunk/WebCore/ksvg2/svg/SVGPathSegCurvetoCubicSmooth.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegCurvetoQuadraticcpp">trunk/WebCore/ksvg2/svg/SVGPathSegCurvetoQuadratic.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegCurvetoQuadratich">trunk/WebCore/ksvg2/svg/SVGPathSegCurvetoQuadratic.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegCurvetoQuadraticSmoothcpp">trunk/WebCore/ksvg2/svg/SVGPathSegCurvetoQuadraticSmooth.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegCurvetoQuadraticSmoothh">trunk/WebCore/ksvg2/svg/SVGPathSegCurvetoQuadraticSmooth.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegLinetocpp">trunk/WebCore/ksvg2/svg/SVGPathSegLineto.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegLinetoh">trunk/WebCore/ksvg2/svg/SVGPathSegLineto.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegLinetoHorizontalcpp">trunk/WebCore/ksvg2/svg/SVGPathSegLinetoHorizontal.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegLinetoHorizontalh">trunk/WebCore/ksvg2/svg/SVGPathSegLinetoHorizontal.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegLinetoVerticalcpp">trunk/WebCore/ksvg2/svg/SVGPathSegLinetoVertical.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegLinetoVerticalh">trunk/WebCore/ksvg2/svg/SVGPathSegLinetoVertical.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegListcpp">trunk/WebCore/ksvg2/svg/SVGPathSegList.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegListh">trunk/WebCore/ksvg2/svg/SVGPathSegList.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegMovetocpp">trunk/WebCore/ksvg2/svg/SVGPathSegMoveto.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPathSegMovetoh">trunk/WebCore/ksvg2/svg/SVGPathSegMoveto.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGPolyElementcpp">trunk/WebCore/ksvg2/svg/SVGPolyElement.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGRadialGradientElementcpp">trunk/WebCore/ksvg2/svg/SVGRadialGradientElement.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGSVGElementcpp">trunk/WebCore/ksvg2/svg/SVGSVGElement.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGStopElementcpp">trunk/WebCore/ksvg2/svg/SVGStopElement.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGStopElementh">trunk/WebCore/ksvg2/svg/SVGStopElement.h</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGTransformcpp">trunk/WebCore/ksvg2/svg/SVGTransform.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGTransformDistancecpp">trunk/WebCore/ksvg2/svg/SVGTransformDistance.cpp</a></li>
<li><a href="#trunkWebCoreksvg2svgSVGTransformablecpp">trunk/WebCore/ksvg2/svg/SVGTransformable.cpp</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/WebCore/ChangeLog (23950 => 23951)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/WebCore/ChangeLog        2007-07-03 20:15:44 UTC (rev 23950)
+++ trunk/WebCore/ChangeLog        2007-07-03 20:46:44 UTC (rev 23951)
</span><span class="lines">@@ -1,3 +1,242 @@
</span><ins>+2007-07-03 Sam Weinig <sam@webkit.org>
+
+ Reviewed by Oliver.
+
+ Eighth round of fixes for implicit 64-32 bit conversion errors.
+ <rdar://problem/5292262>
+
+ - Convert SVG implementation files to use floats instead of doubles
+ to match the spec/IDLs.
+
+ * bindings/scripts/CodeGeneratorJS.pm:
+ * ksvg2/svg/SVGAngle.cpp:
+ * ksvg2/svg/SVGAnimatedTemplate.h:
+ * ksvg2/svg/SVGAnimationElement.cpp:
+ (WebCore::SVGAnimationElement::getEndTime):
+ (WebCore::SVGAnimationElement::getStartTime):
+ (WebCore::SVGAnimationElement::getCurrentTime):
+ (WebCore::SVGAnimationElement::getSimpleDuration):
+ * ksvg2/svg/SVGAnimationElement.h:
+ * ksvg2/svg/SVGFitToViewBox.cpp:
+ (WebCore::SVGFitToViewBox::parseViewBox):
+ * ksvg2/svg/SVGLength.cpp:
+ (WebCore::SVGLength::setValueAsString):
+ * ksvg2/svg/SVGLinearGradientElement.cpp:
+ (WebCore::SVGLinearGradientElement::buildGradient):
+ * ksvg2/svg/SVGMatrix.idl:
+ * ksvg2/svg/SVGNumber.idl:
+ * ksvg2/svg/SVGParserUtilities.cpp:
+ (WebCore::SVGPathParser::parseSVG):
+ (WebCore::SVGPathParser::calculateArc):
+ (WebCore::SVGPathParser::svgLineToHorizontal):
+ (WebCore::SVGPathParser::svgLineToVertical):
+ (WebCore::SVGPathParser::svgCurveToCubicSmooth):
+ (WebCore::SVGPathParser::svgCurveToQuadratic):
+ (WebCore::SVGPathParser::svgCurveToQuadraticSmooth):
+ (WebCore::SVGPathParser::svgArcTo):
+ * ksvg2/svg/SVGParserUtilities.h:
+ * ksvg2/svg/SVGPathElement.cpp:
+ (WebCore::SVGPathElement::SVGPathElement):
+ (WebCore::SVGPathElement::getTotalLength):
+ (WebCore::SVGPathElement::getPointAtLength):
+ (WebCore::SVGPathElement::getPathSegAtLength):
+ (WebCore::SVGPathElement::createSVGPathSegMovetoAbs):
+ (WebCore::SVGPathElement::createSVGPathSegMovetoRel):
+ (WebCore::SVGPathElement::createSVGPathSegLinetoAbs):
+ (WebCore::SVGPathElement::createSVGPathSegLinetoRel):
+ (WebCore::SVGPathElement::createSVGPathSegCurvetoCubicAbs):
+ (WebCore::SVGPathElement::createSVGPathSegCurvetoCubicRel):
+ (WebCore::SVGPathElement::createSVGPathSegCurvetoQuadraticAbs):
+ (WebCore::SVGPathElement::createSVGPathSegCurvetoQuadraticRel):
+ (WebCore::SVGPathElement::createSVGPathSegArcAbs):
+ (WebCore::SVGPathElement::createSVGPathSegArcRel):
+ (WebCore::SVGPathElement::createSVGPathSegLinetoHorizontalAbs):
+ (WebCore::SVGPathElement::createSVGPathSegLinetoHorizontalRel):
+ (WebCore::SVGPathElement::createSVGPathSegLinetoVerticalAbs):
+ (WebCore::SVGPathElement::createSVGPathSegLinetoVerticalRel):
+ (WebCore::SVGPathElement::createSVGPathSegCurvetoCubicSmoothAbs):
+ (WebCore::SVGPathElement::createSVGPathSegCurvetoCubicSmoothRel):
+ (WebCore::SVGPathElement::createSVGPathSegCurvetoQuadraticSmoothAbs):
+ (WebCore::SVGPathElement::createSVGPathSegCurvetoQuadraticSmoothRel):
+ (WebCore::SVGPathElement::svgMoveTo):
+ (WebCore::SVGPathElement::svgLineTo):
+ (WebCore::SVGPathElement::svgLineToHorizontal):
+ (WebCore::SVGPathElement::svgLineToVertical):
+ (WebCore::SVGPathElement::svgCurveToCubic):
+ (WebCore::SVGPathElement::svgCurveToCubicSmooth):
+ (WebCore::SVGPathElement::svgCurveToQuadratic):
+ (WebCore::SVGPathElement::svgCurveToQuadraticSmooth):
+ (WebCore::SVGPathElement::svgArcTo):
+ (WebCore::SVGPathElement::parseMappedAttribute):
+ * ksvg2/svg/SVGPathElement.h:
+ * ksvg2/svg/SVGPathSegArc.cpp:
+ (WebCore::SVGPathSegArcAbs::SVGPathSegArcAbs):
+ (WebCore::SVGPathSegArcAbs::setX):
+ (WebCore::SVGPathSegArcAbs::x):
+ (WebCore::SVGPathSegArcAbs::setY):
+ (WebCore::SVGPathSegArcAbs::y):
+ (WebCore::SVGPathSegArcAbs::setR1):
+ (WebCore::SVGPathSegArcAbs::r1):
+ (WebCore::SVGPathSegArcAbs::setR2):
+ (WebCore::SVGPathSegArcAbs::r2):
+ (WebCore::SVGPathSegArcAbs::setAngle):
+ (WebCore::SVGPathSegArcAbs::angle):
+ (WebCore::SVGPathSegArcRel::SVGPathSegArcRel):
+ (WebCore::SVGPathSegArcRel::setX):
+ (WebCore::SVGPathSegArcRel::x):
+ (WebCore::SVGPathSegArcRel::setY):
+ (WebCore::SVGPathSegArcRel::y):
+ (WebCore::SVGPathSegArcRel::setR1):
+ (WebCore::SVGPathSegArcRel::r1):
+ (WebCore::SVGPathSegArcRel::setR2):
+ (WebCore::SVGPathSegArcRel::r2):
+ (WebCore::SVGPathSegArcRel::setAngle):
+ (WebCore::SVGPathSegArcRel::angle):
+ * ksvg2/svg/SVGPathSegArc.h:
+ * ksvg2/svg/SVGPathSegCurvetoCubic.cpp:
+ (WebCore::SVGPathSegCurvetoCubicAbs::SVGPathSegCurvetoCubicAbs):
+ (WebCore::SVGPathSegCurvetoCubicAbs::setX):
+ (WebCore::SVGPathSegCurvetoCubicAbs::x):
+ (WebCore::SVGPathSegCurvetoCubicAbs::setY):
+ (WebCore::SVGPathSegCurvetoCubicAbs::y):
+ (WebCore::SVGPathSegCurvetoCubicAbs::setX1):
+ (WebCore::SVGPathSegCurvetoCubicAbs::x1):
+ (WebCore::SVGPathSegCurvetoCubicAbs::setY1):
+ (WebCore::SVGPathSegCurvetoCubicAbs::y1):
+ (WebCore::SVGPathSegCurvetoCubicAbs::setX2):
+ (WebCore::SVGPathSegCurvetoCubicAbs::x2):
+ (WebCore::SVGPathSegCurvetoCubicAbs::setY2):
+ (WebCore::SVGPathSegCurvetoCubicAbs::y2):
+ (WebCore::SVGPathSegCurvetoCubicRel::SVGPathSegCurvetoCubicRel):
+ (WebCore::SVGPathSegCurvetoCubicRel::setX):
+ (WebCore::SVGPathSegCurvetoCubicRel::x):
+ (WebCore::SVGPathSegCurvetoCubicRel::setY):
+ (WebCore::SVGPathSegCurvetoCubicRel::y):
+ (WebCore::SVGPathSegCurvetoCubicRel::setX1):
+ (WebCore::SVGPathSegCurvetoCubicRel::x1):
+ (WebCore::SVGPathSegCurvetoCubicRel::setY1):
+ (WebCore::SVGPathSegCurvetoCubicRel::y1):
+ (WebCore::SVGPathSegCurvetoCubicRel::setX2):
+ (WebCore::SVGPathSegCurvetoCubicRel::x2):
+ (WebCore::SVGPathSegCurvetoCubicRel::setY2):
+ (WebCore::SVGPathSegCurvetoCubicRel::y2):
+ * ksvg2/svg/SVGPathSegCurvetoCubic.h:
+ * ksvg2/svg/SVGPathSegCurvetoCubicSmooth.cpp:
+ (WebCore::SVGPathSegCurvetoCubicSmoothAbs::SVGPathSegCurvetoCubicSmoothAbs):
+ (WebCore::SVGPathSegCurvetoCubicSmoothAbs::setX):
+ (WebCore::SVGPathSegCurvetoCubicSmoothAbs::x):
+ (WebCore::SVGPathSegCurvetoCubicSmoothAbs::setY):
+ (WebCore::SVGPathSegCurvetoCubicSmoothAbs::y):
+ (WebCore::SVGPathSegCurvetoCubicSmoothAbs::setX2):
+ (WebCore::SVGPathSegCurvetoCubicSmoothAbs::x2):
+ (WebCore::SVGPathSegCurvetoCubicSmoothAbs::setY2):
+ (WebCore::SVGPathSegCurvetoCubicSmoothAbs::y2):
+ (WebCore::SVGPathSegCurvetoCubicSmoothRel::SVGPathSegCurvetoCubicSmoothRel):
+ (WebCore::SVGPathSegCurvetoCubicSmoothRel::setX):
+ (WebCore::SVGPathSegCurvetoCubicSmoothRel::x):
+ (WebCore::SVGPathSegCurvetoCubicSmoothRel::setY):
+ (WebCore::SVGPathSegCurvetoCubicSmoothRel::y):
+ (WebCore::SVGPathSegCurvetoCubicSmoothRel::setX2):
+ (WebCore::SVGPathSegCurvetoCubicSmoothRel::x2):
+ (WebCore::SVGPathSegCurvetoCubicSmoothRel::setY2):
+ (WebCore::SVGPathSegCurvetoCubicSmoothRel::y2):
+ * ksvg2/svg/SVGPathSegCurvetoCubicSmooth.h:
+ * ksvg2/svg/SVGPathSegCurvetoQuadratic.cpp:
+ (WebCore::SVGPathSegCurvetoQuadraticAbs::SVGPathSegCurvetoQuadraticAbs):
+ (WebCore::SVGPathSegCurvetoQuadraticAbs::setX):
+ (WebCore::SVGPathSegCurvetoQuadraticAbs::x):
+ (WebCore::SVGPathSegCurvetoQuadraticAbs::setY):
+ (WebCore::SVGPathSegCurvetoQuadraticAbs::y):
+ (WebCore::SVGPathSegCurvetoQuadraticAbs::setX1):
+ (WebCore::SVGPathSegCurvetoQuadraticAbs::x1):
+ (WebCore::SVGPathSegCurvetoQuadraticAbs::setY1):
+ (WebCore::SVGPathSegCurvetoQuadraticAbs::y1):
+ (WebCore::SVGPathSegCurvetoQuadraticRel::SVGPathSegCurvetoQuadraticRel):
+ (WebCore::SVGPathSegCurvetoQuadraticRel::setX):
+ (WebCore::SVGPathSegCurvetoQuadraticRel::x):
+ (WebCore::SVGPathSegCurvetoQuadraticRel::setY):
+ (WebCore::SVGPathSegCurvetoQuadraticRel::y):
+ (WebCore::SVGPathSegCurvetoQuadraticRel::setX1):
+ (WebCore::SVGPathSegCurvetoQuadraticRel::x1):
+ (WebCore::SVGPathSegCurvetoQuadraticRel::setY1):
+ (WebCore::SVGPathSegCurvetoQuadraticRel::y1):
+ * ksvg2/svg/SVGPathSegCurvetoQuadratic.h:
+ (WebCore::SVGPathSegCurvetoQuadraticRel::toString):
+ * ksvg2/svg/SVGPathSegCurvetoQuadraticSmooth.cpp:
+ (WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::SVGPathSegCurvetoQuadraticSmoothAbs):
+ (WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::setX):
+ (WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::x):
+ (WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::setY):
+ (WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::y):
+ (WebCore::SVGPathSegCurvetoQuadraticSmoothRel::SVGPathSegCurvetoQuadraticSmoothRel):
+ (WebCore::SVGPathSegCurvetoQuadraticSmoothRel::setX):
+ (WebCore::SVGPathSegCurvetoQuadraticSmoothRel::x):
+ (WebCore::SVGPathSegCurvetoQuadraticSmoothRel::setY):
+ (WebCore::SVGPathSegCurvetoQuadraticSmoothRel::y):
+ * ksvg2/svg/SVGPathSegCurvetoQuadraticSmooth.h:
+ * ksvg2/svg/SVGPathSegLineto.cpp:
+ (WebCore::SVGPathSegLinetoAbs::SVGPathSegLinetoAbs):
+ (WebCore::SVGPathSegLinetoAbs::setX):
+ (WebCore::SVGPathSegLinetoAbs::x):
+ (WebCore::SVGPathSegLinetoAbs::setY):
+ (WebCore::SVGPathSegLinetoAbs::y):
+ (WebCore::SVGPathSegLinetoRel::SVGPathSegLinetoRel):
+ (WebCore::SVGPathSegLinetoRel::setX):
+ (WebCore::SVGPathSegLinetoRel::x):
+ (WebCore::SVGPathSegLinetoRel::setY):
+ (WebCore::SVGPathSegLinetoRel::y):
+ * ksvg2/svg/SVGPathSegLineto.h:
+ * ksvg2/svg/SVGPathSegLinetoHorizontal.cpp:
+ (WebCore::SVGPathSegLinetoHorizontalAbs::SVGPathSegLinetoHorizontalAbs):
+ (WebCore::SVGPathSegLinetoHorizontalAbs::setX):
+ (WebCore::SVGPathSegLinetoHorizontalAbs::x):
+ (WebCore::SVGPathSegLinetoHorizontalRel::SVGPathSegLinetoHorizontalRel):
+ (WebCore::SVGPathSegLinetoHorizontalRel::setX):
+ (WebCore::SVGPathSegLinetoHorizontalRel::x):
+ * ksvg2/svg/SVGPathSegLinetoHorizontal.h:
+ * ksvg2/svg/SVGPathSegLinetoVertical.cpp:
+ (WebCore::SVGPathSegLinetoVerticalAbs::SVGPathSegLinetoVerticalAbs):
+ (WebCore::SVGPathSegLinetoVerticalAbs::setY):
+ (WebCore::SVGPathSegLinetoVerticalAbs::y):
+ (WebCore::SVGPathSegLinetoVerticalRel::SVGPathSegLinetoVerticalRel):
+ (WebCore::SVGPathSegLinetoVerticalRel::setY):
+ (WebCore::SVGPathSegLinetoVerticalRel::y):
+ * ksvg2/svg/SVGPathSegLinetoVertical.h:
+ * ksvg2/svg/SVGPathSegList.cpp:
+ (WebCore::SVGPathSegList::getPathSegAtLength):
+ * ksvg2/svg/SVGPathSegList.h:
+ * ksvg2/svg/SVGPathSegMoveto.cpp:
+ (WebCore::SVGPathSegMovetoAbs::SVGPathSegMovetoAbs):
+ (WebCore::SVGPathSegMovetoAbs::setX):
+ (WebCore::SVGPathSegMovetoAbs::x):
+ (WebCore::SVGPathSegMovetoAbs::setY):
+ (WebCore::SVGPathSegMovetoAbs::y):
+ (WebCore::SVGPathSegMovetoRel::SVGPathSegMovetoRel):
+ (WebCore::SVGPathSegMovetoRel::setX):
+ (WebCore::SVGPathSegMovetoRel::x):
+ (WebCore::SVGPathSegMovetoRel::setY):
+ (WebCore::SVGPathSegMovetoRel::y):
+ * ksvg2/svg/SVGPathSegMoveto.h:
+ * ksvg2/svg/SVGPolyElement.cpp:
+ (WebCore::SVGPolyElement::svgPolyTo):
+ * ksvg2/svg/SVGRadialGradientElement.cpp:
+ (WebCore::SVGRadialGradientElement::buildGradient):
+ * ksvg2/svg/SVGSVGElement.cpp:
+ (WebCore::SVGSVGElement::viewport):
+ (WebCore::SVGSVGElement::getCurrentTime):
+ * ksvg2/svg/SVGStopElement.cpp:
+ (WebCore::SVGStopElement::SVGStopElement):
+ (WebCore::SVGStopElement::parseMappedAttribute):
+ * ksvg2/svg/SVGStopElement.h:
+ * ksvg2/svg/SVGTransform.cpp:
+ (SVGTransform::translate):
+ (SVGTransform::scale):
+ * ksvg2/svg/SVGTransformDistance.cpp:
+ (WebCore::SVGTransformDistance::addToSVGTransform):
+ (WebCore::SVGTransformDistance::distance):
+ * ksvg2/svg/SVGTransformable.cpp:
+ (WebCore::SVGTransformable::parseTransformAttribute):
+
</ins><span class="cx"> 2007-07-03 Anders Carlsson <andersca@apple.com>
</span><span class="cx">
</span><span class="cx"> Reviewed by Darin.
</span></span></pre></div>
<a id="trunkWebCoreWebCorexcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/WebCore/WebCore.xcodeproj/project.pbxproj ( => )</h4>
<pre class="diff"><span>
<span class="info">
</span></span></pre>
</div>
</div>
</body>
</html>