~ubuntu-branches/ubuntu/karmic/webkit/karmic-proposed

« back to all changes in this revision

Viewing changes to WebCore/svg/SVGAnimateTransformElement.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-05-15 18:30:58 UTC
  • mto: (4.4.1 sid) (1.2.2 upstream) (16.1.1 lucid)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20090515183058-35m5or0ufm5tutud
Tags: upstream-1.1.7
ImportĀ upstreamĀ versionĀ 1.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
*/
24
24
 
25
25
#include "config.h"
 
26
 
26
27
#if ENABLE(SVG) && ENABLE(SVG_ANIMATION)
27
28
#include "SVGAnimateTransformElement.h"
28
29
 
29
 
#include "TransformationMatrix.h"
 
30
#include "MappedAttribute.h"
30
31
#include "RenderObject.h"
31
32
#include "SVGAngle.h"
32
33
#include "SVGElementInstance.h"
37
38
#include "SVGTransform.h"
38
39
#include "SVGTransformList.h"
39
40
#include "SVGUseElement.h"
40
 
 
 
41
#include "TransformationMatrix.h"
41
42
#include <math.h>
42
43
#include <wtf/MathExtras.h>
43
44