Changeset 68874 in webkit


Ignore:
Timestamp:
Oct 1, 2010 3:19:45 AM (14 years ago)
Author:
Nikolas Zimmermann
Message:

2010-10-01 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Andreas Kling.

Move SVG text related renderers into rendering/svg/
https://bugs.webkit.org/show_bug.cgi?id=46969

Doesn't affect any functionality, just moves files around.

  • Android.mk:
  • CMakeLists.txt:
  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • rendering/RenderSVGAllInOne.cpp:
  • rendering/RenderSVGInline.cpp: Removed.
  • rendering/RenderSVGInline.h: Removed.
  • rendering/RenderSVGInlineText.cpp: Removed.
  • rendering/RenderSVGInlineText.h: Removed.
  • rendering/RenderSVGTSpan.cpp: Removed.
  • rendering/RenderSVGTSpan.h: Removed.
  • rendering/RenderSVGText.cpp: Removed.
  • rendering/RenderSVGText.h: Removed.
  • rendering/RenderSVGTextPath.cpp: Removed.
  • rendering/RenderSVGTextPath.h: Removed.
  • rendering/SVGInlineFlowBox.cpp: Removed.
  • rendering/SVGInlineFlowBox.h: Removed.
  • rendering/SVGInlineTextBox.cpp: Removed.
  • rendering/SVGInlineTextBox.h: Removed.
  • rendering/SVGRootInlineBox.cpp: Removed.
  • rendering/SVGRootInlineBox.h: Removed.
  • rendering/SVGTextQuery.cpp: Removed.
  • rendering/SVGTextQuery.h: Removed.
  • rendering/svg/RenderSVGInline.cpp: Copied from rendering/RenderSVGInline.cpp.
  • rendering/svg/RenderSVGInline.h: Copied from rendering/RenderSVGInline.h.
  • rendering/svg/RenderSVGInlineText.cpp: Copied from rendering/RenderSVGInlineText.cpp.
  • rendering/svg/RenderSVGInlineText.h: Copied from rendering/RenderSVGInlineText.h.
  • rendering/svg/RenderSVGTSpan.cpp: Copied from rendering/RenderSVGTSpan.cpp.
  • rendering/svg/RenderSVGTSpan.h: Copied from rendering/RenderSVGTSpan.h.
  • rendering/svg/RenderSVGText.cpp: Copied from rendering/RenderSVGText.cpp.
  • rendering/svg/RenderSVGText.h: Copied from rendering/RenderSVGText.h.
  • rendering/svg/RenderSVGTextPath.cpp: Copied from rendering/RenderSVGTextPath.cpp.
  • rendering/svg/RenderSVGTextPath.h: Copied from rendering/RenderSVGTextPath.h.
  • rendering/svg/SVGInlineFlowBox.cpp: Copied from rendering/SVGInlineFlowBox.cpp.
  • rendering/svg/SVGInlineFlowBox.h: Copied from rendering/SVGInlineFlowBox.h.
  • rendering/svg/SVGInlineTextBox.cpp: Copied from rendering/SVGInlineTextBox.cpp.
  • rendering/svg/SVGInlineTextBox.h: Copied from rendering/SVGInlineTextBox.h.
  • rendering/svg/SVGRootInlineBox.cpp: Copied from rendering/SVGRootInlineBox.cpp.
  • rendering/svg/SVGRootInlineBox.h: Copied from rendering/SVGRootInlineBox.h.
  • rendering/svg/SVGTextQuery.cpp: Copied from rendering/SVGTextQuery.cpp.
  • rendering/svg/SVGTextQuery.h: Copied from rendering/SVGTextQuery.h.
Location:
trunk/WebCore
Files:
9 edited
18 moved

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/Android.mk

    r68873 r68874  
    691691        rendering/RenderSVGHiddenContainer.cpp \
    692692        rendering/RenderSVGImage.cpp \
    693         rendering/RenderSVGInline.cpp \
    694         rendering/RenderSVGInlineText.cpp \
    695693        rendering/RenderSVGModelObject.cpp \
    696694        rendering/RenderSVGResource.cpp \
     
    708706        rendering/RenderSVGRoot.cpp \
    709707        rendering/RenderSVGShadowTreeRootContainer.cpp \
    710         rendering/RenderSVGTSpan.cpp \
    711         rendering/RenderSVGText.cpp \
    712         rendering/RenderSVGTextPath.cpp \
    713708        rendering/RenderSVGTransformableContainer.cpp \
    714709        rendering/RenderSVGViewportContainer.cpp \
     710        rendering/svg/RenderSVGInline.cpp \
     711        rendering/svg/RenderSVGInlineText.cpp \
     712        rendering/svg/RenderSVGTSpan.cpp \
     713        rendering/svg/RenderSVGText.cpp \
     714        rendering/svg/RenderSVGTextPath.cpp \
     715        rendering/svg/SVGInlineFlowBox.cpp \
     716        rendering/svg/SVGInlineTextBox.cpp \
     717        rendering/svg/SVGRootInlineBox.cpp \
    715718        rendering/svg/SVGTextChunk.cpp \
    716719        rendering/svg/SVGTextLayoutAttributes.cpp \
    717720        rendering/svg/SVGTextLayoutBuilder.cpp \
    718         rendering/svg/SVGTextMetrics.cpp
     721        rendering/svg/SVGTextMetrics.cpp \
     722        rendering/svg/SVGTextQuery.cpp
    719723endif
    720724
     
    747751        rendering/SVGCharacterLayoutInfo.cpp \
    748752        rendering/SVGImageBufferTools.cpp \
    749         rendering/SVGInlineFlowBox.cpp \
    750         rendering/SVGInlineTextBox.cpp \
    751753        rendering/SVGMarkerLayoutInfo.cpp \
    752754        rendering/SVGRenderSupport.cpp \
     
    755757        rendering/SVGResourcesCache.cpp \
    756758        rendering/SVGResourcesCycleSolver.cpp \
    757         rendering/SVGRootInlineBox.cpp \
    758759        rendering/SVGShadowTreeElements.cpp \
    759760        rendering/SVGTextChunkLayoutInfo.cpp \
    760         rendering/SVGTextLayoutUtilities.cpp \
    761         rendering/SVGTextQuery.cpp
     761        rendering/SVGTextLayoutUtilities.cpp
    762762endif
    763763
  • trunk/WebCore/CMakeLists.txt

    r68873 r68874  
    16671667        rendering/RenderSVGHiddenContainer.cpp
    16681668        rendering/RenderSVGImage.cpp
    1669         rendering/RenderSVGInline.cpp
    1670         rendering/RenderSVGInlineText.cpp
    16711669        rendering/RenderSVGModelObject.cpp
    16721670        rendering/RenderSVGResource.cpp
     
    16841682        rendering/RenderSVGRoot.cpp
    16851683        rendering/RenderSVGShadowTreeRootContainer.cpp
    1686         rendering/RenderSVGTSpan.cpp
    1687         rendering/RenderSVGText.cpp
    1688         rendering/RenderSVGTextPath.cpp
    16891684        rendering/RenderSVGTransformableContainer.cpp
    16901685        rendering/RenderSVGViewportContainer.cpp
     
    16921687        rendering/SVGCharacterLayoutInfo.cpp
    16931688        rendering/SVGImageBufferTools.cpp
    1694         rendering/SVGInlineFlowBox.cpp
    1695         rendering/SVGInlineTextBox.cpp
    16961689        rendering/SVGMarkerLayoutInfo.cpp
    16971690        rendering/SVGRenderSupport.cpp
     
    17001693        rendering/SVGResourcesCache.cpp
    17011694        rendering/SVGResourcesCycleSolver.cpp
    1702         rendering/SVGRootInlineBox.cpp
    17031695        rendering/SVGShadowTreeElements.cpp
    17041696        rendering/SVGTextChunkLayoutInfo.cpp
    17051697        rendering/SVGTextLayoutUtilities.cpp
    1706         rendering/SVGTextQuery.cpp
    17071698        rendering/style/SVGRenderStyle.cpp
    17081699        rendering/style/SVGRenderStyleDefs.cpp
     1700        rendering/svg/RenderSVGInline.cpp
     1701        rendering/svg/RenderSVGInlineText.cpp
     1702        rendering/svg/RenderSVGTSpan.cpp
     1703        rendering/svg/RenderSVGText.cpp
     1704        rendering/svg/RenderSVGTextPath.cpp
     1705        rendering/svg/SVGInlineFlowBox.cpp
     1706        rendering/svg/SVGInlineTextBox.cpp
     1707        rendering/svg/SVGRootInlineBox.cpp
    17091708        rendering/svg/SVGTextChunk.cpp
    17101709        rendering/svg/SVGTextLayoutAttributes.cpp
    17111710        rendering/svg/SVGTextLayoutBuilder.cpp
    17121711        rendering/svg/SVGTextMetrics.cpp
     1712        rendering/svg/SVGTextQuery.cpp
    17131713        svg/ColorDistance.cpp
    17141714        svg/SVGAElement.cpp
  • trunk/WebCore/ChangeLog

    r68873 r68874  
     12010-10-01  Nikolas Zimmermann  <nzimmermann@rim.com>
     2
     3        Reviewed by Andreas Kling.
     4
     5        Move SVG text related renderers into rendering/svg/
     6        https://bugs.webkit.org/show_bug.cgi?id=46969
     7
     8        Doesn't affect any functionality, just moves files around.
     9
     10        * Android.mk:
     11        * CMakeLists.txt:
     12        * GNUmakefile.am:
     13        * WebCore.gypi:
     14        * WebCore.pro:
     15        * WebCore.vcproj/WebCore.vcproj:
     16        * WebCore.xcodeproj/project.pbxproj:
     17        * rendering/RenderSVGAllInOne.cpp:
     18        * rendering/RenderSVGInline.cpp: Removed.
     19        * rendering/RenderSVGInline.h: Removed.
     20        * rendering/RenderSVGInlineText.cpp: Removed.
     21        * rendering/RenderSVGInlineText.h: Removed.
     22        * rendering/RenderSVGTSpan.cpp: Removed.
     23        * rendering/RenderSVGTSpan.h: Removed.
     24        * rendering/RenderSVGText.cpp: Removed.
     25        * rendering/RenderSVGText.h: Removed.
     26        * rendering/RenderSVGTextPath.cpp: Removed.
     27        * rendering/RenderSVGTextPath.h: Removed.
     28        * rendering/SVGInlineFlowBox.cpp: Removed.
     29        * rendering/SVGInlineFlowBox.h: Removed.
     30        * rendering/SVGInlineTextBox.cpp: Removed.
     31        * rendering/SVGInlineTextBox.h: Removed.
     32        * rendering/SVGRootInlineBox.cpp: Removed.
     33        * rendering/SVGRootInlineBox.h: Removed.
     34        * rendering/SVGTextQuery.cpp: Removed.
     35        * rendering/SVGTextQuery.h: Removed.
     36        * rendering/svg/RenderSVGInline.cpp: Copied from rendering/RenderSVGInline.cpp.
     37        * rendering/svg/RenderSVGInline.h: Copied from rendering/RenderSVGInline.h.
     38        * rendering/svg/RenderSVGInlineText.cpp: Copied from rendering/RenderSVGInlineText.cpp.
     39        * rendering/svg/RenderSVGInlineText.h: Copied from rendering/RenderSVGInlineText.h.
     40        * rendering/svg/RenderSVGTSpan.cpp: Copied from rendering/RenderSVGTSpan.cpp.
     41        * rendering/svg/RenderSVGTSpan.h: Copied from rendering/RenderSVGTSpan.h.
     42        * rendering/svg/RenderSVGText.cpp: Copied from rendering/RenderSVGText.cpp.
     43        * rendering/svg/RenderSVGText.h: Copied from rendering/RenderSVGText.h.
     44        * rendering/svg/RenderSVGTextPath.cpp: Copied from rendering/RenderSVGTextPath.cpp.
     45        * rendering/svg/RenderSVGTextPath.h: Copied from rendering/RenderSVGTextPath.h.
     46        * rendering/svg/SVGInlineFlowBox.cpp: Copied from rendering/SVGInlineFlowBox.cpp.
     47        * rendering/svg/SVGInlineFlowBox.h: Copied from rendering/SVGInlineFlowBox.h.
     48        * rendering/svg/SVGInlineTextBox.cpp: Copied from rendering/SVGInlineTextBox.cpp.
     49        * rendering/svg/SVGInlineTextBox.h: Copied from rendering/SVGInlineTextBox.h.
     50        * rendering/svg/SVGRootInlineBox.cpp: Copied from rendering/SVGRootInlineBox.cpp.
     51        * rendering/svg/SVGRootInlineBox.h: Copied from rendering/SVGRootInlineBox.h.
     52        * rendering/svg/SVGTextQuery.cpp: Copied from rendering/SVGTextQuery.cpp.
     53        * rendering/svg/SVGTextQuery.h: Copied from rendering/SVGTextQuery.h.
     54
    1552010-10-01  Nikolas Zimmermann  <nzimmermann@rim.com>
    256
  • trunk/WebCore/GNUmakefile.am

    r68873 r68874  
    26422642        WebCore/rendering/RenderSVGImage.cpp \
    26432643        WebCore/rendering/RenderSVGImage.h \
    2644         WebCore/rendering/RenderSVGInline.cpp \
    2645         WebCore/rendering/RenderSVGInline.h \
    2646         WebCore/rendering/RenderSVGInlineText.cpp \
    2647         WebCore/rendering/RenderSVGInlineText.h \
    26482644        WebCore/rendering/RenderSVGModelObject.cpp \
    26492645        WebCore/rendering/RenderSVGModelObject.h \
     
    26762672        WebCore/rendering/RenderSVGShadowTreeRootContainer.cpp \
    26772673        WebCore/rendering/RenderSVGShadowTreeRootContainer.h \
    2678         WebCore/rendering/RenderSVGText.cpp \
    2679         WebCore/rendering/RenderSVGText.h \
    2680         WebCore/rendering/RenderSVGTextPath.cpp \
    2681         WebCore/rendering/RenderSVGTextPath.h \
    26822674        WebCore/rendering/RenderSVGTransformableContainer.cpp \
    26832675        WebCore/rendering/RenderSVGTransformableContainer.h \
    2684         WebCore/rendering/RenderSVGTSpan.cpp \
    2685         WebCore/rendering/RenderSVGTSpan.h \
    26862676        WebCore/rendering/RenderSVGViewportContainer.cpp \
    26872677        WebCore/rendering/RenderSVGViewportContainer.h \
     
    27892779        WebCore/rendering/SVGImageBufferTools.cpp \
    27902780        WebCore/rendering/SVGImageBufferTools.h \
    2791         WebCore/rendering/SVGInlineFlowBox.cpp \
    2792         WebCore/rendering/SVGInlineFlowBox.h \
    2793         WebCore/rendering/SVGInlineTextBox.cpp \
    2794         WebCore/rendering/SVGInlineTextBox.h \
    27952781        WebCore/rendering/SVGMarkerData.h \
    27962782        WebCore/rendering/SVGMarkerLayoutInfo.cpp \
     
    28062792        WebCore/rendering/SVGResourcesCycleSolver.h \
    28072793        WebCore/rendering/SVGResources.h \
    2808         WebCore/rendering/SVGRootInlineBox.cpp \
    2809         WebCore/rendering/SVGRootInlineBox.h \
    28102794        WebCore/rendering/SVGShadowTreeElements.cpp \
    28112795        WebCore/rendering/SVGShadowTreeElements.h \
     2796        WebCore/rendering/svg/RenderSVGInline.cpp \
     2797        WebCore/rendering/svg/RenderSVGInline.h \
     2798        WebCore/rendering/svg/RenderSVGInlineText.cpp \
     2799        WebCore/rendering/svg/RenderSVGInlineText.h \
     2800        WebCore/rendering/svg/RenderSVGTSpan.cpp \
     2801        WebCore/rendering/svg/RenderSVGTSpan.h \
     2802        WebCore/rendering/svg/RenderSVGText.cpp \
     2803        WebCore/rendering/svg/RenderSVGText.h \
     2804        WebCore/rendering/svg/RenderSVGTextPath.cpp \
     2805        WebCore/rendering/svg/RenderSVGTextPath.h \
     2806        WebCore/rendering/svg/SVGInlineFlowBox.cpp \
     2807        WebCore/rendering/svg/SVGInlineFlowBox.h \
     2808        WebCore/rendering/svg/SVGInlineTextBox.cpp \
     2809        WebCore/rendering/svg/SVGInlineTextBox.h \
     2810        WebCore/rendering/svg/SVGRootInlineBox.cpp \
     2811        WebCore/rendering/svg/SVGRootInlineBox.h \
    28122812        WebCore/rendering/svg/SVGTextChunk.cpp \
    28132813        WebCore/rendering/svg/SVGTextChunk.h \
     
    28192819        WebCore/rendering/svg/SVGTextMetrics.cpp \
    28202820        WebCore/rendering/svg/SVGTextMetrics.h \
     2821        WebCore/rendering/svg/SVGTextQuery.cpp \
     2822        WebCore/rendering/svg/SVGTextQuery.h \
    28212823        WebCore/rendering/SVGTextChunkLayoutInfo.cpp \
    28222824        WebCore/rendering/SVGTextChunkLayoutInfo.h \
    28232825        WebCore/rendering/SVGTextLayoutUtilities.cpp \
    28242826        WebCore/rendering/SVGTextLayoutUtilities.h \
    2825         WebCore/rendering/SVGTextQuery.cpp \
    2826         WebCore/rendering/SVGTextQuery.h \
    28272827        WebCore/rendering/TableLayout.h \
    28282828        WebCore/rendering/TextControlInnerElements.cpp \
  • trunk/WebCore/WebCore.gypi

    r68873 r68874  
    34363436            'rendering/style/StyleVisualData.cpp',
    34373437            'rendering/style/StyleVisualData.h',
     3438            'rendering/svg/RenderSVGInline.cpp',
     3439            'rendering/svg/RenderSVGInline.h',
     3440            'rendering/svg/RenderSVGInlineText.cpp',
     3441            'rendering/svg/RenderSVGInlineText.h',
     3442            'rendering/svg/RenderSVGTSpan.cpp',
     3443            'rendering/svg/RenderSVGTSpan.h',
     3444            'rendering/svg/RenderSVGText.cpp',
     3445            'rendering/svg/RenderSVGText.h',
     3446            'rendering/svg/RenderSVGTextPath.cpp',
     3447            'rendering/svg/RenderSVGTextPath.h',
     3448            'rendering/svg/SVGInlineFlowBox.cpp',
     3449            'rendering/svg/SVGInlineFlowBox.h',
     3450            'rendering/svg/SVGInlineTextBox.cpp',
     3451            'rendering/svg/SVGInlineTextBox.h',
     3452            'rendering/svg/SVGRootInlineBox.cpp',
     3453            'rendering/svg/SVGRootInlineBox.h',
    34383454            'rendering/svg/SVGTextChunk.cpp',
    34393455            'rendering/svg/SVGTextChunk.h',
     
    34453461            'rendering/svg/SVGTextMetrics.cpp',
    34463462            'rendering/svg/SVGTextMetrics.h',
     3463            'rendering/svg/SVGTextQuery.cpp',
     3464            'rendering/svg/SVGTextQuery.h',
    34473465            'rendering/AutoTableLayout.cpp',
    34483466            'rendering/AutoTableLayout.h',
     
    35813599            'rendering/RenderSVGImage.cpp',
    35823600            'rendering/RenderSVGImage.h',
    3583             'rendering/RenderSVGInline.cpp',
    3584             'rendering/RenderSVGInline.h',
    3585             'rendering/RenderSVGInlineText.cpp',
    3586             'rendering/RenderSVGInlineText.h',
    35873601            'rendering/RenderSVGModelObject.cpp',
    35883602            'rendering/RenderSVGModelObject.h',
     
    36153629            'rendering/RenderSVGShadowTreeRootContainer.cpp',
    36163630            'rendering/RenderSVGShadowTreeRootContainer.h',
    3617             'rendering/RenderSVGTSpan.cpp',
    3618             'rendering/RenderSVGTSpan.h',
    3619             'rendering/RenderSVGText.cpp',
    3620             'rendering/RenderSVGText.h',
    3621             'rendering/RenderSVGTextPath.cpp',
    3622             'rendering/RenderSVGTextPath.h',
    36233631            'rendering/RenderSVGTransformableContainer.cpp',
    36243632            'rendering/RenderSVGTransformableContainer.h',
     
    36903698            'rendering/SVGCharacterLayoutInfo.cpp',
    36913699            'rendering/SVGCharacterLayoutInfo.h',
    3692             'rendering/SVGInlineFlowBox.cpp',
    3693             'rendering/SVGInlineFlowBox.h',
    36943700            'rendering/SVGImageBufferTools.cpp',
    36953701            'rendering/SVGImageBufferTools.h',
    3696             'rendering/SVGInlineTextBox.cpp',
    3697             'rendering/SVGInlineTextBox.h',
    36983702            'rendering/SVGMarkerData.h',
    36993703            'rendering/SVGMarkerLayoutInfo.cpp',
     
    37093713            'rendering/SVGResourcesCycleSolver.cpp',
    37103714            'rendering/SVGResourcesCycleSolver.h',
    3711             'rendering/SVGRootInlineBox.cpp',
    3712             'rendering/SVGRootInlineBox.h',
    37133715            'rendering/SVGShadowTreeElements.cpp',
    37143716            'rendering/SVGShadowTreeElements.h',
     
    37173719            'rendering/SVGTextLayoutUtilities.cpp',
    37183720            'rendering/SVGTextLayoutUtilities.h',
    3719             'rendering/SVGTextQuery.cpp',
    3720             'rendering/SVGTextQuery.h',
    37213721            'rendering/TableLayout.h',
    37223722            'rendering/TextControlInnerElements.cpp',
  • trunk/WebCore/WebCore.pro

    r68873 r68874  
    22292229    rendering/RenderSVGHiddenContainer.h \
    22302230    rendering/RenderSVGImage.h \
    2231     rendering/RenderSVGInline.h \
    2232     rendering/RenderSVGInlineText.h \
    22332231    rendering/RenderSVGModelObject.h \
    22342232    rendering/RenderSVGResource.h \
     
    22462244    rendering/RenderSVGRoot.h \
    22472245    rendering/RenderSVGShadowTreeRootContainer.h \
    2248     rendering/RenderSVGText.h \
    2249     rendering/RenderSVGTextPath.h \
    22502246    rendering/RenderSVGTransformableContainer.h \
    2251     rendering/RenderSVGTSpan.h \
    22522247    rendering/RenderSVGViewportContainer.h \
    22532248    rendering/RenderTableCell.h \
     
    22952290    rendering/style/SVGRenderStyleDefs.h \
    22962291    rendering/style/SVGRenderStyle.h \
     2292    rendering/svg/RenderSVGInline.h \
     2293    rendering/svg/RenderSVGInlineText.h \
     2294    rendering/svg/RenderSVGTSpan.h \
     2295    rendering/svg/RenderSVGText.h \
     2296    rendering/svg/RenderSVGTextPath.h \
     2297    rendering/svg/SVGInlineFlowBox.h \
     2298    rendering/svg/SVGInlineTextBox.h \
     2299    rendering/svg/SVGRootInlineBox.h \
    22972300    rendering/svg/SVGTextChunk.h \
    22982301    rendering/svg/SVGTextFragment.h \
     
    23002303    rendering/svg/SVGTextLayoutBuilder.h \
    23012304    rendering/svg/SVGTextMetrics.h \
     2305    rendering/svg/SVGTextQuery.h \
    23022306    rendering/SVGCharacterData.h \
    23032307    rendering/SVGCharacterLayoutInfo.h \
    23042308    rendering/SVGImageBufferTools.h \
    2305     rendering/SVGInlineFlowBox.h \
    2306     rendering/SVGInlineTextBox.h \
    23072309    rendering/SVGMarkerData.h \
    23082310    rendering/SVGMarkerLayoutInfo.h \
     
    23122314    rendering/SVGResourcesCache.h \
    23132315    rendering/SVGResourcesCycleSolver.h \
    2314     rendering/SVGRootInlineBox.h \
    23152316    rendering/SVGShadowTreeElements.h \
    23162317    rendering/SVGTextChunkLayoutInfo.h \
    23172318    rendering/SVGTextLayoutUtilities.h \
    2318     rendering/SVGTextQuery.h \
    23192319    rendering/TextControlInnerElements.h \
    23202320    rendering/TransformState.h \
     
    32793279        rendering/style/SVGRenderStyle.cpp \
    32803280        rendering/style/SVGRenderStyleDefs.cpp \
     3281        rendering/svg/RenderSVGInline.cpp \
     3282        rendering/svg/RenderSVGInlineText.cpp \
     3283        rendering/svg/RenderSVGTSpan.cpp \
     3284        rendering/svg/RenderSVGText.cpp \
     3285        rendering/svg/RenderSVGTextPath.cpp \
     3286        rendering/svg/SVGInlineFlowBox.cpp \
     3287        rendering/svg/SVGInlineTextBox.cpp \
     3288        rendering/svg/SVGRootInlineBox.cpp \
    32813289        rendering/svg/SVGTextChunk.cpp \
    32823290        rendering/svg/SVGTextLayoutAttributes.cpp \
    32833291        rendering/svg/SVGTextLayoutBuilder.cpp \
    32843292        rendering/svg/SVGTextMetrics.cpp \
     3293        rendering/svg/SVGTextQuery.cpp \
    32853294        rendering/PointerEventsHitRules.cpp \
    32863295        svg/SVGDocumentExtensions.cpp \
     
    34433452        rendering/RenderSVGHiddenContainer.cpp \
    34443453        rendering/RenderSVGImage.cpp \
    3445         rendering/RenderSVGInline.cpp \
    3446         rendering/RenderSVGInlineText.cpp \
    34473454        rendering/RenderSVGModelObject.cpp \
    34483455        rendering/RenderSVGResource.cpp \
     
    34603467        rendering/RenderSVGRoot.cpp \
    34613468        rendering/RenderSVGShadowTreeRootContainer.cpp \
    3462         rendering/RenderSVGText.cpp \
    3463         rendering/RenderSVGTextPath.cpp \
    34643469        rendering/RenderSVGTransformableContainer.cpp \
    3465         rendering/RenderSVGTSpan.cpp \
    34663470        rendering/RenderSVGViewportContainer.cpp \
    34673471        rendering/SVGCharacterData.cpp \
    34683472        rendering/SVGCharacterLayoutInfo.cpp \
    34693473        rendering/SVGImageBufferTools.cpp \
    3470         rendering/SVGInlineFlowBox.cpp \
    3471         rendering/SVGInlineTextBox.cpp \
    34723474        rendering/SVGMarkerLayoutInfo.cpp \
    34733475        rendering/SVGRenderSupport.cpp \
     
    34753477        rendering/SVGResourcesCache.cpp \
    34763478        rendering/SVGResourcesCycleSolver.cpp \
    3477         rendering/SVGRootInlineBox.cpp \
    34783479        rendering/SVGShadowTreeElements.cpp \
    34793480        rendering/SVGTextChunkLayoutInfo.cpp \
    3480         rendering/SVGTextLayoutUtilities.cpp \
    3481         rendering/SVGTextQuery.cpp
     3481        rendering/SVGTextLayoutUtilities.cpp
    34823482}
    34833483
  • trunk/WebCore/WebCore.vcproj/WebCore.vcproj

    r68873 r68874  
    3094630946                        </File>
    3094730947                        <File
    30948                                 RelativePath="..\rendering\RenderSVGInline.cpp"
    30949                                 >
    30950                                 <FileConfiguration
    30951                                         Name="Debug|Win32"
    30952                                         ExcludedFromBuild="true"
    30953                                         >
    30954                                         <Tool
    30955                                                 Name="VCCLCompilerTool"
    30956                                         />
    30957                                 </FileConfiguration>
    30958                                 <FileConfiguration
    30959                                         Name="Release|Win32"
    30960                                         ExcludedFromBuild="true"
    30961                                         >
    30962                                         <Tool
    30963                                                 Name="VCCLCompilerTool"
    30964                                         />
    30965                                 </FileConfiguration>
    30966                                 <FileConfiguration
    30967                                         Name="Debug_Internal|Win32"
    30968                                         ExcludedFromBuild="true"
    30969                                         >
    30970                                         <Tool
    30971                                                 Name="VCCLCompilerTool"
    30972                                         />
    30973                                 </FileConfiguration>
    30974                                 <FileConfiguration
    30975                                         Name="Debug_Cairo|Win32"
    30976                                         ExcludedFromBuild="true"
    30977                                         >
    30978                                         <Tool
    30979                                                 Name="VCCLCompilerTool"
    30980                                         />
    30981                                 </FileConfiguration>
    30982                                 <FileConfiguration
    30983                                         Name="Release_Cairo|Win32"
    30984                                         ExcludedFromBuild="true"
    30985                                         >
    30986                                         <Tool
    30987                                                 Name="VCCLCompilerTool"
    30988                                         />
    30989                                 </FileConfiguration>
    30990                                 <FileConfiguration
    30991                                         Name="Debug_All|Win32"
    30992                                         ExcludedFromBuild="true"
    30993                                         >
    30994                                         <Tool
    30995                                                 Name="VCCLCompilerTool"
    30996                                         />
    30997                                 </FileConfiguration>
    30998                         </File>
    30999                         <File
    31000                                 RelativePath="..\rendering\RenderSVGInline.h"
    31001                                 >
    31002                         </File>
    31003                         <File
    31004                                 RelativePath="..\rendering\RenderSVGInlineText.cpp"
    31005                                 >
    31006                                 <FileConfiguration
    31007                                         Name="Debug|Win32"
    31008                                         ExcludedFromBuild="true"
    31009                                         >
    31010                                         <Tool
    31011                                                 Name="VCCLCompilerTool"
    31012                                         />
    31013                                 </FileConfiguration>
    31014                                 <FileConfiguration
    31015                                         Name="Release|Win32"
    31016                                         ExcludedFromBuild="true"
    31017                                         >
    31018                                         <Tool
    31019                                                 Name="VCCLCompilerTool"
    31020                                         />
    31021                                 </FileConfiguration>
    31022                                 <FileConfiguration
    31023                                         Name="Debug_Internal|Win32"
    31024                                         ExcludedFromBuild="true"
    31025                                         >
    31026                                         <Tool
    31027                                                 Name="VCCLCompilerTool"
    31028                                         />
    31029                                 </FileConfiguration>
    31030                                 <FileConfiguration
    31031                                         Name="Debug_Cairo|Win32"
    31032                                         ExcludedFromBuild="true"
    31033                                         >
    31034                                         <Tool
    31035                                                 Name="VCCLCompilerTool"
    31036                                         />
    31037                                 </FileConfiguration>
    31038                                 <FileConfiguration
    31039                                         Name="Release_Cairo|Win32"
    31040                                         ExcludedFromBuild="true"
    31041                                         >
    31042                                         <Tool
    31043                                                 Name="VCCLCompilerTool"
    31044                                         />
    31045                                 </FileConfiguration>
    31046                                 <FileConfiguration
    31047                                         Name="Debug_All|Win32"
    31048                                         ExcludedFromBuild="true"
    31049                                         >
    31050                                         <Tool
    31051                                                 Name="VCCLCompilerTool"
    31052                                         />
    31053                                 </FileConfiguration>
    31054                         </File>
    31055                         <File
    31056                                 RelativePath="..\rendering\RenderSVGInlineText.h"
    31057                                 >
    31058                         </File>
    31059                         <File
    3106030948                                RelativePath="..\rendering\RenderSVGModelObject.cpp"
    3106130949                                >
     
    3189831786                        </File>
    3189931787                        <File
    31900                                 RelativePath="..\rendering\RenderSVGText.cpp"
    31901                                 >
    31902                                 <FileConfiguration
    31903                                         Name="Debug|Win32"
    31904                                         ExcludedFromBuild="true"
    31905                                         >
    31906                                         <Tool
    31907                                                 Name="VCCLCompilerTool"
    31908                                         />
    31909                                 </FileConfiguration>
    31910                                 <FileConfiguration
    31911                                         Name="Release|Win32"
    31912                                         ExcludedFromBuild="true"
    31913                                         >
    31914                                         <Tool
    31915                                                 Name="VCCLCompilerTool"
    31916                                         />
    31917                                 </FileConfiguration>
    31918                                 <FileConfiguration
    31919                                         Name="Debug_Internal|Win32"
    31920                                         ExcludedFromBuild="true"
    31921                                         >
    31922                                         <Tool
    31923                                                 Name="VCCLCompilerTool"
    31924                                         />
    31925                                 </FileConfiguration>
    31926                                 <FileConfiguration
    31927                                         Name="Debug_Cairo|Win32"
    31928                                         ExcludedFromBuild="true"
    31929                                         >
    31930                                         <Tool
    31931                                                 Name="VCCLCompilerTool"
    31932                                         />
    31933                                 </FileConfiguration>
    31934                                 <FileConfiguration
    31935                                         Name="Release_Cairo|Win32"
    31936                                         ExcludedFromBuild="true"
    31937                                         >
    31938                                         <Tool
    31939                                                 Name="VCCLCompilerTool"
    31940                                         />
    31941                                 </FileConfiguration>
    31942                                 <FileConfiguration
    31943                                         Name="Debug_All|Win32"
    31944                                         ExcludedFromBuild="true"
    31945                                         >
    31946                                         <Tool
    31947                                                 Name="VCCLCompilerTool"
    31948                                         />
    31949                                 </FileConfiguration>
    31950                         </File>
    31951                         <File
    31952                                 RelativePath="..\rendering\RenderSVGText.h"
    31953                                 >
    31954                         </File>
    31955                         <File
    31956                                 RelativePath="..\rendering\RenderSVGTextPath.cpp"
    31957                                 >
    31958                                 <FileConfiguration
    31959                                         Name="Debug|Win32"
    31960                                         ExcludedFromBuild="true"
    31961                                         >
    31962                                         <Tool
    31963                                                 Name="VCCLCompilerTool"
    31964                                         />
    31965                                 </FileConfiguration>
    31966                                 <FileConfiguration
    31967                                         Name="Release|Win32"
    31968                                         ExcludedFromBuild="true"
    31969                                         >
    31970                                         <Tool
    31971                                                 Name="VCCLCompilerTool"
    31972                                         />
    31973                                 </FileConfiguration>
    31974                                 <FileConfiguration
    31975                                         Name="Debug_Internal|Win32"
    31976                                         ExcludedFromBuild="true"
    31977                                         >
    31978                                         <Tool
    31979                                                 Name="VCCLCompilerTool"
    31980                                         />
    31981                                 </FileConfiguration>
    31982                                 <FileConfiguration
    31983                                         Name="Debug_Cairo|Win32"
    31984                                         ExcludedFromBuild="true"
    31985                                         >
    31986                                         <Tool
    31987                                                 Name="VCCLCompilerTool"
    31988                                         />
    31989                                 </FileConfiguration>
    31990                                 <FileConfiguration
    31991                                         Name="Release_Cairo|Win32"
    31992                                         ExcludedFromBuild="true"
    31993                                         >
    31994                                         <Tool
    31995                                                 Name="VCCLCompilerTool"
    31996                                         />
    31997                                 </FileConfiguration>
    31998                                 <FileConfiguration
    31999                                         Name="Debug_All|Win32"
    32000                                         ExcludedFromBuild="true"
    32001                                         >
    32002                                         <Tool
    32003                                                 Name="VCCLCompilerTool"
    32004                                         />
    32005                                 </FileConfiguration>
    32006                         </File>
    32007                         <File
    32008                                 RelativePath="..\rendering\RenderSVGTextPath.h"
    32009                                 >
    32010                         </File>
    32011                         <File
    3201231788                                RelativePath="..\rendering\RenderSVGTransformableContainer.cpp"
    3201331789                                >
     
    3206631842                        </File>
    3206731843                        <File
    32068                                 RelativePath="..\rendering\RenderSVGTSpan.cpp"
    32069                                 >
    32070                                 <FileConfiguration
    32071                                         Name="Debug|Win32"
    32072                                         ExcludedFromBuild="true"
    32073                                         >
    32074                                         <Tool
    32075                                                 Name="VCCLCompilerTool"
    32076                                         />
    32077                                 </FileConfiguration>
    32078                                 <FileConfiguration
    32079                                         Name="Release|Win32"
    32080                                         ExcludedFromBuild="true"
    32081                                         >
    32082                                         <Tool
    32083                                                 Name="VCCLCompilerTool"
    32084                                         />
    32085                                 </FileConfiguration>
    32086                                 <FileConfiguration
    32087                                         Name="Debug_Internal|Win32"
    32088                                         ExcludedFromBuild="true"
    32089                                         >
    32090                                         <Tool
    32091                                                 Name="VCCLCompilerTool"
    32092                                         />
    32093                                 </FileConfiguration>
    32094                                 <FileConfiguration
    32095                                         Name="Debug_Cairo|Win32"
    32096                                         ExcludedFromBuild="true"
    32097                                         >
    32098                                         <Tool
    32099                                                 Name="VCCLCompilerTool"
    32100                                         />
    32101                                 </FileConfiguration>
    32102                                 <FileConfiguration
    32103                                         Name="Release_Cairo|Win32"
    32104                                         ExcludedFromBuild="true"
    32105                                         >
    32106                                         <Tool
    32107                                                 Name="VCCLCompilerTool"
    32108                                         />
    32109                                 </FileConfiguration>
    32110                                 <FileConfiguration
    32111                                         Name="Debug_All|Win32"
    32112                                         ExcludedFromBuild="true"
    32113                                         >
    32114                                         <Tool
    32115                                                 Name="VCCLCompilerTool"
    32116                                         />
    32117                                 </FileConfiguration>
    32118                         </File>
    32119                         <File
    32120                                 RelativePath="..\rendering\RenderSVGTSpan.h"
    32121                                 >
    32122                         </File>
    32123                         <File
    3212431844                                RelativePath="..\rendering\RenderSVGViewportContainer.cpp"
    3212531845                                >
     
    3252832248                        </File>
    3252932249                        <File
    32530                                 RelativePath="..\rendering\SVGInlineFlowBox.cpp"
    32531                                 >
    32532                                 <FileConfiguration
    32533                                         Name="Debug|Win32"
    32534                                         ExcludedFromBuild="true"
    32535                                         >
    32536                                         <Tool
    32537                                                 Name="VCCLCompilerTool"
    32538                                         />
    32539                                 </FileConfiguration>
    32540                                 <FileConfiguration
    32541                                         Name="Release|Win32"
    32542                                         ExcludedFromBuild="true"
    32543                                         >
    32544                                         <Tool
    32545                                                 Name="VCCLCompilerTool"
    32546                                         />
    32547                                 </FileConfiguration>
    32548                                 <FileConfiguration
    32549                                         Name="Debug_Internal|Win32"
    32550                                         ExcludedFromBuild="true"
    32551                                         >
    32552                                         <Tool
    32553                                                 Name="VCCLCompilerTool"
    32554                                         />
    32555                                 </FileConfiguration>
    32556                                 <FileConfiguration
    32557                                         Name="Debug_Cairo|Win32"
    32558                                         ExcludedFromBuild="true"
    32559                                         >
    32560                                         <Tool
    32561                                                 Name="VCCLCompilerTool"
    32562                                         />
    32563                                 </FileConfiguration>
    32564                                 <FileConfiguration
    32565                                         Name="Release_Cairo|Win32"
    32566                                         ExcludedFromBuild="true"
    32567                                         >
    32568                                         <Tool
    32569                                                 Name="VCCLCompilerTool"
    32570                                         />
    32571                                 </FileConfiguration>
    32572                                 <FileConfiguration
    32573                                         Name="Debug_All|Win32"
    32574                                         ExcludedFromBuild="true"
    32575                                         >
    32576                                         <Tool
    32577                                                 Name="VCCLCompilerTool"
    32578                                         />
    32579                                 </FileConfiguration>
    32580                         </File>
    32581                         <File
    32582                                 RelativePath="..\rendering\SVGInlineFlowBox.h"
    32583                                 >
    32584                         </File>
    32585                         <File
    32586                                 RelativePath="..\rendering\SVGInlineTextBox.cpp"
    32587                                 >
    32588                                 <FileConfiguration
    32589                                         Name="Debug|Win32"
    32590                                         ExcludedFromBuild="true"
    32591                                         >
    32592                                         <Tool
    32593                                                 Name="VCCLCompilerTool"
    32594                                         />
    32595                                 </FileConfiguration>
    32596                                 <FileConfiguration
    32597                                         Name="Release|Win32"
    32598                                         ExcludedFromBuild="true"
    32599                                         >
    32600                                         <Tool
    32601                                                 Name="VCCLCompilerTool"
    32602                                         />
    32603                                 </FileConfiguration>
    32604                                 <FileConfiguration
    32605                                         Name="Debug_Internal|Win32"
    32606                                         ExcludedFromBuild="true"
    32607                                         >
    32608                                         <Tool
    32609                                                 Name="VCCLCompilerTool"
    32610                                         />
    32611                                 </FileConfiguration>
    32612                                 <FileConfiguration
    32613                                         Name="Debug_Cairo|Win32"
    32614                                         ExcludedFromBuild="true"
    32615                                         >
    32616                                         <Tool
    32617                                                 Name="VCCLCompilerTool"
    32618                                         />
    32619                                 </FileConfiguration>
    32620                                 <FileConfiguration
    32621                                         Name="Release_Cairo|Win32"
    32622                                         ExcludedFromBuild="true"
    32623                                         >
    32624                                         <Tool
    32625                                                 Name="VCCLCompilerTool"
    32626                                         />
    32627                                 </FileConfiguration>
    32628                                 <FileConfiguration
    32629                                         Name="Debug_All|Win32"
    32630                                         ExcludedFromBuild="true"
    32631                                         >
    32632                                         <Tool
    32633                                                 Name="VCCLCompilerTool"
    32634                                         />
    32635                                 </FileConfiguration>
    32636                         </File>
    32637                         <File
    32638                                 RelativePath="..\rendering\SVGInlineTextBox.h"
    32639                                 >
    32640                         </File>
    32641                         <File
    3264232250                                RelativePath="..\rendering\SVGMarkerData.h"
    3264332251                                >
     
    3298032588                        </File>
    3298132589                        <File
    32982                                 RelativePath="..\rendering\SVGRootInlineBox.cpp"
    32983                                 >
    32984                                 <FileConfiguration
    32985                                         Name="Debug|Win32"
    32986                                         ExcludedFromBuild="true"
    32987                                         >
    32988                                         <Tool
    32989                                                 Name="VCCLCompilerTool"
    32990                                         />
    32991                                 </FileConfiguration>
    32992                                 <FileConfiguration
    32993                                         Name="Release|Win32"
    32994                                         ExcludedFromBuild="true"
    32995                                         >
    32996                                         <Tool
    32997                                                 Name="VCCLCompilerTool"
    32998                                         />
    32999                                 </FileConfiguration>
    33000                                 <FileConfiguration
    33001                                         Name="Debug_Internal|Win32"
    33002                                         ExcludedFromBuild="true"
    33003                                         >
    33004                                         <Tool
    33005                                                 Name="VCCLCompilerTool"
    33006                                         />
    33007                                 </FileConfiguration>
    33008                                 <FileConfiguration
    33009                                         Name="Debug_Cairo|Win32"
    33010                                         ExcludedFromBuild="true"
    33011                                         >
    33012                                         <Tool
    33013                                                 Name="VCCLCompilerTool"
    33014                                         />
    33015                                 </FileConfiguration>
    33016                                 <FileConfiguration
    33017                                         Name="Release_Cairo|Win32"
    33018                                         ExcludedFromBuild="true"
    33019                                         >
    33020                                         <Tool
    33021                                                 Name="VCCLCompilerTool"
    33022                                         />
    33023                                 </FileConfiguration>
    33024                                 <FileConfiguration
    33025                                         Name="Debug_All|Win32"
    33026                                         ExcludedFromBuild="true"
    33027                                         >
    33028                                         <Tool
    33029                                                 Name="VCCLCompilerTool"
    33030                                         />
    33031                                 </FileConfiguration>
    33032                         </File>
    33033                         <File
    33034                                 RelativePath="..\rendering\SVGRootInlineBox.h"
    33035                                 >
    33036                         </File>
    33037                         <File
    3303832590                                RelativePath="..\rendering\SVGShadowTreeElements.cpp"
    3303932591                                >
     
    3320132753                        <File
    3320232754                                RelativePath="..\rendering\SVGTextLayoutUtilities.h"
    33203                                 >
    33204                         </File>
    33205                         <File
    33206                                 RelativePath="..\rendering\SVGTextQuery.cpp"
    33207                                 >
    33208                                 <FileConfiguration
    33209                                         Name="Debug|Win32"
    33210                                         ExcludedFromBuild="true"
    33211                                         >
    33212                                         <Tool
    33213                                                 Name="VCCLCompilerTool"
    33214                                         />
    33215                                 </FileConfiguration>
    33216                                 <FileConfiguration
    33217                                         Name="Release|Win32"
    33218                                         ExcludedFromBuild="true"
    33219                                         >
    33220                                         <Tool
    33221                                                 Name="VCCLCompilerTool"
    33222                                         />
    33223                                 </FileConfiguration>
    33224                                 <FileConfiguration
    33225                                         Name="Debug_Internal|Win32"
    33226                                         ExcludedFromBuild="true"
    33227                                         >
    33228                                         <Tool
    33229                                                 Name="VCCLCompilerTool"
    33230                                         />
    33231                                 </FileConfiguration>
    33232                                 <FileConfiguration
    33233                                         Name="Debug_Cairo|Win32"
    33234                                         ExcludedFromBuild="true"
    33235                                         >
    33236                                         <Tool
    33237                                                 Name="VCCLCompilerTool"
    33238                                         />
    33239                                 </FileConfiguration>
    33240                                 <FileConfiguration
    33241                                         Name="Release_Cairo|Win32"
    33242                                         ExcludedFromBuild="true"
    33243                                         >
    33244                                         <Tool
    33245                                                 Name="VCCLCompilerTool"
    33246                                         />
    33247                                 </FileConfiguration>
    33248                                 <FileConfiguration
    33249                                         Name="Debug_All|Win32"
    33250                                         ExcludedFromBuild="true"
    33251                                         >
    33252                                         <Tool
    33253                                                 Name="VCCLCompilerTool"
    33254                                         />
    33255                                 </FileConfiguration>
    33256                         </File>
    33257                         <File
    33258                                 RelativePath="..\rendering\SVGTextQuery.h"
    3325932755                                >
    3326032756                        </File>
     
    3351533011                                >
    3351633012                                <File
     33013                                        RelativePath="..\rendering\svg\RenderSVGInline.cpp"
     33014                                        >
     33015                                        <FileConfiguration
     33016                                                Name="Debug|Win32"
     33017                                                ExcludedFromBuild="true"
     33018                                                >
     33019                                                <Tool
     33020                                                        Name="VCCLCompilerTool"
     33021                                                />
     33022                                        </FileConfiguration>
     33023                                        <FileConfiguration
     33024                                                Name="Release|Win32"
     33025                                                ExcludedFromBuild="true"
     33026                                                >
     33027                                                <Tool
     33028                                                        Name="VCCLCompilerTool"
     33029                                                />
     33030                                        </FileConfiguration>
     33031                                        <FileConfiguration
     33032                                                Name="Debug_Internal|Win32"
     33033                                                ExcludedFromBuild="true"
     33034                                                >
     33035                                                <Tool
     33036                                                        Name="VCCLCompilerTool"
     33037                                                />
     33038                                        </FileConfiguration>
     33039                                        <FileConfiguration
     33040                                                Name="Debug_Cairo|Win32"
     33041                                                ExcludedFromBuild="true"
     33042                                                >
     33043                                                <Tool
     33044                                                        Name="VCCLCompilerTool"
     33045                                                />
     33046                                        </FileConfiguration>
     33047                                        <FileConfiguration
     33048                                                Name="Release_Cairo|Win32"
     33049                                                ExcludedFromBuild="true"
     33050                                                >
     33051                                                <Tool
     33052                                                        Name="VCCLCompilerTool"
     33053                                                />
     33054                                        </FileConfiguration>
     33055                                        <FileConfiguration
     33056                                                Name="Debug_All|Win32"
     33057                                                ExcludedFromBuild="true"
     33058                                                >
     33059                                                <Tool
     33060                                                        Name="VCCLCompilerTool"
     33061                                                />
     33062                                        </FileConfiguration>
     33063                                </File>
     33064                                <File
     33065                                        RelativePath="..\rendering\svg\RenderSVGInline.h"
     33066                                        >
     33067                                </File>
     33068                                <File
     33069                                        RelativePath="..\rendering\svg\RenderSVGInlineText.cpp"
     33070                                        >
     33071                                        <FileConfiguration
     33072                                                Name="Debug|Win32"
     33073                                                ExcludedFromBuild="true"
     33074                                                >
     33075                                                <Tool
     33076                                                        Name="VCCLCompilerTool"
     33077                                                />
     33078                                        </FileConfiguration>
     33079                                        <FileConfiguration
     33080                                                Name="Release|Win32"
     33081                                                ExcludedFromBuild="true"
     33082                                                >
     33083                                                <Tool
     33084                                                        Name="VCCLCompilerTool"
     33085                                                />
     33086                                        </FileConfiguration>
     33087                                        <FileConfiguration
     33088                                                Name="Debug_Internal|Win32"
     33089                                                ExcludedFromBuild="true"
     33090                                                >
     33091                                                <Tool
     33092                                                        Name="VCCLCompilerTool"
     33093                                                />
     33094                                        </FileConfiguration>
     33095                                        <FileConfiguration
     33096                                                Name="Debug_Cairo|Win32"
     33097                                                ExcludedFromBuild="true"
     33098                                                >
     33099                                                <Tool
     33100                                                        Name="VCCLCompilerTool"
     33101                                                />
     33102                                        </FileConfiguration>
     33103                                        <FileConfiguration
     33104                                                Name="Release_Cairo|Win32"
     33105                                                ExcludedFromBuild="true"
     33106                                                >
     33107                                                <Tool
     33108                                                        Name="VCCLCompilerTool"
     33109                                                />
     33110                                        </FileConfiguration>
     33111                                        <FileConfiguration
     33112                                                Name="Debug_All|Win32"
     33113                                                ExcludedFromBuild="true"
     33114                                                >
     33115                                                <Tool
     33116                                                        Name="VCCLCompilerTool"
     33117                                                />
     33118                                        </FileConfiguration>
     33119                                </File>
     33120                                <File
     33121                                        RelativePath="..\rendering\svg\RenderSVGInlineText.h"
     33122                                        >
     33123                                </File>
     33124                                <File
     33125                                        RelativePath="..\rendering\svg\RenderSVGTSpan.cpp"
     33126                                        >
     33127                                        <FileConfiguration
     33128                                                Name="Debug|Win32"
     33129                                                ExcludedFromBuild="true"
     33130                                                >
     33131                                                <Tool
     33132                                                        Name="VCCLCompilerTool"
     33133                                                />
     33134                                        </FileConfiguration>
     33135                                        <FileConfiguration
     33136                                                Name="Release|Win32"
     33137                                                ExcludedFromBuild="true"
     33138                                                >
     33139                                                <Tool
     33140                                                        Name="VCCLCompilerTool"
     33141                                                />
     33142                                        </FileConfiguration>
     33143                                        <FileConfiguration
     33144                                                Name="Debug_Internal|Win32"
     33145                                                ExcludedFromBuild="true"
     33146                                                >
     33147                                                <Tool
     33148                                                        Name="VCCLCompilerTool"
     33149                                                />
     33150                                        </FileConfiguration>
     33151                                        <FileConfiguration
     33152                                                Name="Debug_Cairo|Win32"
     33153                                                ExcludedFromBuild="true"
     33154                                                >
     33155                                                <Tool
     33156                                                        Name="VCCLCompilerTool"
     33157                                                />
     33158                                        </FileConfiguration>
     33159                                        <FileConfiguration
     33160                                                Name="Release_Cairo|Win32"
     33161                                                ExcludedFromBuild="true"
     33162                                                >
     33163                                                <Tool
     33164                                                        Name="VCCLCompilerTool"
     33165                                                />
     33166                                        </FileConfiguration>
     33167                                        <FileConfiguration
     33168                                                Name="Debug_All|Win32"
     33169                                                ExcludedFromBuild="true"
     33170                                                >
     33171                                                <Tool
     33172                                                        Name="VCCLCompilerTool"
     33173                                                />
     33174                                        </FileConfiguration>
     33175                                </File>
     33176                                <File
     33177                                        RelativePath="..\rendering\svg\RenderSVGTSpan.h"
     33178                                        >
     33179                                </File>
     33180                                <File
     33181                                        RelativePath="..\rendering\svg\RenderSVGText.cpp"
     33182                                        >
     33183                                        <FileConfiguration
     33184                                                Name="Debug|Win32"
     33185                                                ExcludedFromBuild="true"
     33186                                                >
     33187                                                <Tool
     33188                                                        Name="VCCLCompilerTool"
     33189                                                />
     33190                                        </FileConfiguration>
     33191                                        <FileConfiguration
     33192                                                Name="Release|Win32"
     33193                                                ExcludedFromBuild="true"
     33194                                                >
     33195                                                <Tool
     33196                                                        Name="VCCLCompilerTool"
     33197                                                />
     33198                                        </FileConfiguration>
     33199                                        <FileConfiguration
     33200                                                Name="Debug_Internal|Win32"
     33201                                                ExcludedFromBuild="true"
     33202                                                >
     33203                                                <Tool
     33204                                                        Name="VCCLCompilerTool"
     33205                                                />
     33206                                        </FileConfiguration>
     33207                                        <FileConfiguration
     33208                                                Name="Debug_Cairo|Win32"
     33209                                                ExcludedFromBuild="true"
     33210                                                >
     33211                                                <Tool
     33212                                                        Name="VCCLCompilerTool"
     33213                                                />
     33214                                        </FileConfiguration>
     33215                                        <FileConfiguration
     33216                                                Name="Release_Cairo|Win32"
     33217                                                ExcludedFromBuild="true"
     33218                                                >
     33219                                                <Tool
     33220                                                        Name="VCCLCompilerTool"
     33221                                                />
     33222                                        </FileConfiguration>
     33223                                        <FileConfiguration
     33224                                                Name="Debug_All|Win32"
     33225                                                ExcludedFromBuild="true"
     33226                                                >
     33227                                                <Tool
     33228                                                        Name="VCCLCompilerTool"
     33229                                                />
     33230                                        </FileConfiguration>
     33231                                </File>
     33232                                <File
     33233                                        RelativePath="..\rendering\svg\RenderSVGText.h"
     33234                                        >
     33235                                </File>
     33236                                <File
     33237                                        RelativePath="..\rendering\svg\RenderSVGTextPath.cpp"
     33238                                        >
     33239                                        <FileConfiguration
     33240                                                Name="Debug|Win32"
     33241                                                ExcludedFromBuild="true"
     33242                                                >
     33243                                                <Tool
     33244                                                        Name="VCCLCompilerTool"
     33245                                                />
     33246                                        </FileConfiguration>
     33247                                        <FileConfiguration
     33248                                                Name="Release|Win32"
     33249                                                ExcludedFromBuild="true"
     33250                                                >
     33251                                                <Tool
     33252                                                        Name="VCCLCompilerTool"
     33253                                                />
     33254                                        </FileConfiguration>
     33255                                        <FileConfiguration
     33256                                                Name="Debug_Internal|Win32"
     33257                                                ExcludedFromBuild="true"
     33258                                                >
     33259                                                <Tool
     33260                                                        Name="VCCLCompilerTool"
     33261                                                />
     33262                                        </FileConfiguration>
     33263                                        <FileConfiguration
     33264                                                Name="Debug_Cairo|Win32"
     33265                                                ExcludedFromBuild="true"
     33266                                                >
     33267                                                <Tool
     33268                                                        Name="VCCLCompilerTool"
     33269                                                />
     33270                                        </FileConfiguration>
     33271                                        <FileConfiguration
     33272                                                Name="Release_Cairo|Win32"
     33273                                                ExcludedFromBuild="true"
     33274                                                >
     33275                                                <Tool
     33276                                                        Name="VCCLCompilerTool"
     33277                                                />
     33278                                        </FileConfiguration>
     33279                                        <FileConfiguration
     33280                                                Name="Debug_All|Win32"
     33281                                                ExcludedFromBuild="true"
     33282                                                >
     33283                                                <Tool
     33284                                                        Name="VCCLCompilerTool"
     33285                                                />
     33286                                        </FileConfiguration>
     33287                                </File>
     33288                                <File
     33289                                        RelativePath="..\rendering\svg\RenderSVGTextPath.h"
     33290                                        >
     33291                                </File>
     33292                                <File
     33293                                        RelativePath="..\rendering\svg\SVGInlineFlowBox.cpp"
     33294                                        >
     33295                                        <FileConfiguration
     33296                                                Name="Debug|Win32"
     33297                                                ExcludedFromBuild="true"
     33298                                                >
     33299                                                <Tool
     33300                                                        Name="VCCLCompilerTool"
     33301                                                />
     33302                                        </FileConfiguration>
     33303                                        <FileConfiguration
     33304                                                Name="Release|Win32"
     33305                                                ExcludedFromBuild="true"
     33306                                                >
     33307                                                <Tool
     33308                                                        Name="VCCLCompilerTool"
     33309                                                />
     33310                                        </FileConfiguration>
     33311                                        <FileConfiguration
     33312                                                Name="Debug_Internal|Win32"
     33313                                                ExcludedFromBuild="true"
     33314                                                >
     33315                                                <Tool
     33316                                                        Name="VCCLCompilerTool"
     33317                                                />
     33318                                        </FileConfiguration>
     33319                                        <FileConfiguration
     33320                                                Name="Debug_Cairo|Win32"
     33321                                                ExcludedFromBuild="true"
     33322                                                >
     33323                                                <Tool
     33324                                                        Name="VCCLCompilerTool"
     33325                                                />
     33326                                        </FileConfiguration>
     33327                                        <FileConfiguration
     33328                                                Name="Release_Cairo|Win32"
     33329                                                ExcludedFromBuild="true"
     33330                                                >
     33331                                                <Tool
     33332                                                        Name="VCCLCompilerTool"
     33333                                                />
     33334                                        </FileConfiguration>
     33335                                        <FileConfiguration
     33336                                                Name="Debug_All|Win32"
     33337                                                ExcludedFromBuild="true"
     33338                                                >
     33339                                                <Tool
     33340                                                        Name="VCCLCompilerTool"
     33341                                                />
     33342                                        </FileConfiguration>
     33343                                </File>
     33344                                <File
     33345                                        RelativePath="..\rendering\svg\SVGInlineFlowBox.h"
     33346                                        >
     33347                                </File>
     33348                                <File
     33349                                        RelativePath="..\rendering\svg\SVGInlineTextBox.cpp"
     33350                                        >
     33351                                        <FileConfiguration
     33352                                                Name="Debug|Win32"
     33353                                                ExcludedFromBuild="true"
     33354                                                >
     33355                                                <Tool
     33356                                                        Name="VCCLCompilerTool"
     33357                                                />
     33358                                        </FileConfiguration>
     33359                                        <FileConfiguration
     33360                                                Name="Release|Win32"
     33361                                                ExcludedFromBuild="true"
     33362                                                >
     33363                                                <Tool
     33364                                                        Name="VCCLCompilerTool"
     33365                                                />
     33366                                        </FileConfiguration>
     33367                                        <FileConfiguration
     33368                                                Name="Debug_Internal|Win32"
     33369                                                ExcludedFromBuild="true"
     33370                                                >
     33371                                                <Tool
     33372                                                        Name="VCCLCompilerTool"
     33373                                                />
     33374                                        </FileConfiguration>
     33375                                        <FileConfiguration
     33376                                                Name="Debug_Cairo|Win32"
     33377                                                ExcludedFromBuild="true"
     33378                                                >
     33379                                                <Tool
     33380                                                        Name="VCCLCompilerTool"
     33381                                                />
     33382                                        </FileConfiguration>
     33383                                        <FileConfiguration
     33384                                                Name="Release_Cairo|Win32"
     33385                                                ExcludedFromBuild="true"
     33386                                                >
     33387                                                <Tool
     33388                                                        Name="VCCLCompilerTool"
     33389                                                />
     33390                                        </FileConfiguration>
     33391                                        <FileConfiguration
     33392                                                Name="Debug_All|Win32"
     33393                                                ExcludedFromBuild="true"
     33394                                                >
     33395                                                <Tool
     33396                                                        Name="VCCLCompilerTool"
     33397                                                />
     33398                                        </FileConfiguration>
     33399                                </File>
     33400                                <File
     33401                                        RelativePath="..\rendering\svg\SVGInlineTextBox.h"
     33402                                        >
     33403                                </File>
     33404                                <File
     33405                                        RelativePath="..\rendering\svg\SVGRootInlineBox.cpp"
     33406                                        >
     33407                                        <FileConfiguration
     33408                                                Name="Debug|Win32"
     33409                                                ExcludedFromBuild="true"
     33410                                                >
     33411                                                <Tool
     33412                                                        Name="VCCLCompilerTool"
     33413                                                />
     33414                                        </FileConfiguration>
     33415                                        <FileConfiguration
     33416                                                Name="Release|Win32"
     33417                                                ExcludedFromBuild="true"
     33418                                                >
     33419                                                <Tool
     33420                                                        Name="VCCLCompilerTool"
     33421                                                />
     33422                                        </FileConfiguration>
     33423                                        <FileConfiguration
     33424                                                Name="Debug_Internal|Win32"
     33425                                                ExcludedFromBuild="true"
     33426                                                >
     33427                                                <Tool
     33428                                                        Name="VCCLCompilerTool"
     33429                                                />
     33430                                        </FileConfiguration>
     33431                                        <FileConfiguration
     33432                                                Name="Debug_Cairo|Win32"
     33433                                                ExcludedFromBuild="true"
     33434                                                >
     33435                                                <Tool
     33436                                                        Name="VCCLCompilerTool"
     33437                                                />
     33438                                        </FileConfiguration>
     33439                                        <FileConfiguration
     33440                                                Name="Release_Cairo|Win32"
     33441                                                ExcludedFromBuild="true"
     33442                                                >
     33443                                                <Tool
     33444                                                        Name="VCCLCompilerTool"
     33445                                                />
     33446                                        </FileConfiguration>
     33447                                        <FileConfiguration
     33448                                                Name="Debug_All|Win32"
     33449                                                ExcludedFromBuild="true"
     33450                                                >
     33451                                                <Tool
     33452                                                        Name="VCCLCompilerTool"
     33453                                                />
     33454                                        </FileConfiguration>
     33455                                </File>
     33456                                <File
     33457                                        RelativePath="..\rendering\svg\SVGRootInlineBox.h"
     33458                                        >
     33459                                </File>
     33460                                <File
    3351733461                                        RelativePath="..\rendering\svg\SVGTextChunk.cpp"
    3351833462                                        >
     
    3354833492                                <File
    3354933493                                        RelativePath="..\rendering\svg\SVGTextMetrics.h"
     33494                                        >
     33495                                </File>
     33496                                <File
     33497                                        RelativePath="..\rendering\svg\SVGTextQuery.cpp"
     33498                                        >
     33499                                        <FileConfiguration
     33500                                                Name="Debug|Win32"
     33501                                                ExcludedFromBuild="true"
     33502                                                >
     33503                                                <Tool
     33504                                                        Name="VCCLCompilerTool"
     33505                                                />
     33506                                        </FileConfiguration>
     33507                                        <FileConfiguration
     33508                                                Name="Release|Win32"
     33509                                                ExcludedFromBuild="true"
     33510                                                >
     33511                                                <Tool
     33512                                                        Name="VCCLCompilerTool"
     33513                                                />
     33514                                        </FileConfiguration>
     33515                                        <FileConfiguration
     33516                                                Name="Debug_Internal|Win32"
     33517                                                ExcludedFromBuild="true"
     33518                                                >
     33519                                                <Tool
     33520                                                        Name="VCCLCompilerTool"
     33521                                                />
     33522                                        </FileConfiguration>
     33523                                        <FileConfiguration
     33524                                                Name="Debug_Cairo|Win32"
     33525                                                ExcludedFromBuild="true"
     33526                                                >
     33527                                                <Tool
     33528                                                        Name="VCCLCompilerTool"
     33529                                                />
     33530                                        </FileConfiguration>
     33531                                        <FileConfiguration
     33532                                                Name="Release_Cairo|Win32"
     33533                                                ExcludedFromBuild="true"
     33534                                                >
     33535                                                <Tool
     33536                                                        Name="VCCLCompilerTool"
     33537                                                />
     33538                                        </FileConfiguration>
     33539                                        <FileConfiguration
     33540                                                Name="Debug_All|Win32"
     33541                                                ExcludedFromBuild="true"
     33542                                                >
     33543                                                <Tool
     33544                                                        Name="VCCLCompilerTool"
     33545                                                />
     33546                                        </FileConfiguration>
     33547                                </File>
     33548                                <File
     33549                                        RelativePath="..\rendering\svg\SVGTextQuery.h"
    3355033550                                        >
    3355133551                                </File>
  • trunk/WebCore/WebCore.xcodeproj/project.pbxproj

    r68873 r68874  
    109109                084DBAA20ED39D360038C226 /* WMLVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = 084DBA9E0ED39D360038C226 /* WMLVariables.h */; };
    110110                0853D73211C9109000B2FD42 /* SVGTextChunkLayoutInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0853D72F11C9108F00B2FD42 /* SVGTextChunkLayoutInfo.cpp */; };
    111                 0853D73311C9109000B2FD42 /* SVGTextQuery.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0853D73011C9109000B2FD42 /* SVGTextQuery.cpp */; };
    112                 0853D73411C9109000B2FD42 /* SVGTextQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 0853D73111C9109000B2FD42 /* SVGTextQuery.h */; };
     111                0854B0141255E4E600B9CDD0 /* RenderSVGInline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0854B0021255E4E600B9CDD0 /* RenderSVGInline.cpp */; };
     112                0854B0151255E4E600B9CDD0 /* RenderSVGInline.h in Headers */ = {isa = PBXBuildFile; fileRef = 0854B0031255E4E600B9CDD0 /* RenderSVGInline.h */; };
     113                0854B0161255E4E600B9CDD0 /* RenderSVGInlineText.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0854B0041255E4E600B9CDD0 /* RenderSVGInlineText.cpp */; };
     114                0854B0171255E4E600B9CDD0 /* RenderSVGInlineText.h in Headers */ = {isa = PBXBuildFile; fileRef = 0854B0051255E4E600B9CDD0 /* RenderSVGInlineText.h */; };
     115                0854B0181255E4E600B9CDD0 /* RenderSVGText.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0854B0061255E4E600B9CDD0 /* RenderSVGText.cpp */; };
     116                0854B0191255E4E600B9CDD0 /* RenderSVGText.h in Headers */ = {isa = PBXBuildFile; fileRef = 0854B0071255E4E600B9CDD0 /* RenderSVGText.h */; };
     117                0854B01A1255E4E600B9CDD0 /* RenderSVGTextPath.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0854B0081255E4E600B9CDD0 /* RenderSVGTextPath.cpp */; };
     118                0854B01B1255E4E600B9CDD0 /* RenderSVGTextPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 0854B0091255E4E600B9CDD0 /* RenderSVGTextPath.h */; };
     119                0854B01C1255E4E600B9CDD0 /* RenderSVGTSpan.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0854B00A1255E4E600B9CDD0 /* RenderSVGTSpan.cpp */; };
     120                0854B01D1255E4E600B9CDD0 /* RenderSVGTSpan.h in Headers */ = {isa = PBXBuildFile; fileRef = 0854B00B1255E4E600B9CDD0 /* RenderSVGTSpan.h */; };
     121                0854B01E1255E4E600B9CDD0 /* SVGInlineFlowBox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0854B00C1255E4E600B9CDD0 /* SVGInlineFlowBox.cpp */; };
     122                0854B01F1255E4E600B9CDD0 /* SVGInlineFlowBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 0854B00D1255E4E600B9CDD0 /* SVGInlineFlowBox.h */; };
     123                0854B0201255E4E600B9CDD0 /* SVGInlineTextBox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0854B00E1255E4E600B9CDD0 /* SVGInlineTextBox.cpp */; };
     124                0854B0211255E4E600B9CDD0 /* SVGInlineTextBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 0854B00F1255E4E600B9CDD0 /* SVGInlineTextBox.h */; };
     125                0854B0221255E4E600B9CDD0 /* SVGRootInlineBox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0854B0101255E4E600B9CDD0 /* SVGRootInlineBox.cpp */; };
     126                0854B0231255E4E600B9CDD0 /* SVGRootInlineBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 0854B0111255E4E600B9CDD0 /* SVGRootInlineBox.h */; };
     127                0854B0241255E4E600B9CDD0 /* SVGTextQuery.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0854B0121255E4E600B9CDD0 /* SVGTextQuery.cpp */; };
     128                0854B0251255E4E600B9CDD0 /* SVGTextQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 0854B0131255E4E600B9CDD0 /* SVGTextQuery.h */; };
    113129                08563BB4117861780012B578 /* RenderSVGResourcePattern.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08563BB2117861770012B578 /* RenderSVGResourcePattern.cpp */; };
    114130                08563BB5117861780012B578 /* RenderSVGResourcePattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 08563BB3117861770012B578 /* RenderSVGResourcePattern.h */; };
     
    18441860                853CA9D80AEEC5E9002372DC /* RenderSVGImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 853CA9CC0AEEC5E9002372DC /* RenderSVGImage.cpp */; };
    18451861                853CA9D90AEEC5E9002372DC /* RenderSVGImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 853CA9CD0AEEC5E9002372DC /* RenderSVGImage.h */; };
    1846                 853CA9DA0AEEC5E9002372DC /* RenderSVGInline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 853CA9CE0AEEC5E9002372DC /* RenderSVGInline.cpp */; };
    1847                 853CA9DB0AEEC5E9002372DC /* RenderSVGInline.h in Headers */ = {isa = PBXBuildFile; fileRef = 853CA9CF0AEEC5E9002372DC /* RenderSVGInline.h */; };
    1848                 853CA9DC0AEEC5E9002372DC /* RenderSVGInlineText.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 853CA9D00AEEC5E9002372DC /* RenderSVGInlineText.cpp */; };
    1849                 853CA9DD0AEEC5E9002372DC /* RenderSVGInlineText.h in Headers */ = {isa = PBXBuildFile; fileRef = 853CA9D10AEEC5E9002372DC /* RenderSVGInlineText.h */; };
    1850                 853CA9DE0AEEC5E9002372DC /* RenderSVGText.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 853CA9D20AEEC5E9002372DC /* RenderSVGText.cpp */; };
    1851                 853CA9DF0AEEC5E9002372DC /* RenderSVGText.h in Headers */ = {isa = PBXBuildFile; fileRef = 853CA9D30AEEC5E9002372DC /* RenderSVGText.h */; };
    1852                 853CA9E00AEEC5E9002372DC /* RenderSVGTSpan.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 853CA9D40AEEC5E9002372DC /* RenderSVGTSpan.cpp */; };
    1853                 853CA9E10AEEC5E9002372DC /* RenderSVGTSpan.h in Headers */ = {isa = PBXBuildFile; fileRef = 853CA9D50AEEC5E9002372DC /* RenderSVGTSpan.h */; };
    1854                 853CA9E60AEEC608002372DC /* SVGInlineFlowBox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 853CA9E20AEEC608002372DC /* SVGInlineFlowBox.cpp */; };
    1855                 853CA9E70AEEC608002372DC /* SVGInlineFlowBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 853CA9E30AEEC608002372DC /* SVGInlineFlowBox.h */; };
    1856                 853CA9E80AEEC608002372DC /* SVGRootInlineBox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 853CA9E40AEEC608002372DC /* SVGRootInlineBox.cpp */; };
    1857                 853CA9E90AEEC608002372DC /* SVGRootInlineBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 853CA9E50AEEC608002372DC /* SVGRootInlineBox.h */; };
    18581862                853CA9EC0AEEC63C002372DC /* RenderForeignObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 853CA9EA0AEEC63C002372DC /* RenderForeignObject.cpp */; };
    18591863                853CA9ED0AEEC63C002372DC /* RenderForeignObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 853CA9EB0AEEC63C002372DC /* RenderForeignObject.h */; };
     
    38193823                A9D248080D757E7D00FDF959 /* JSDOMMimeTypeArray.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9D248040D757E7D00FDF959 /* JSDOMMimeTypeArray.cpp */; };
    38203824                A9D248090D757E7D00FDF959 /* JSDOMMimeTypeArray.h in Headers */ = {isa = PBXBuildFile; fileRef = A9D248050D757E7D00FDF959 /* JSDOMMimeTypeArray.h */; };
    3821                 AA0972CC0B6947A800A705E9 /* SVGInlineTextBox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA0972CA0B6947A800A705E9 /* SVGInlineTextBox.cpp */; };
    3822                 AA0972CD0B6947A800A705E9 /* SVGInlineTextBox.h in Headers */ = {isa = PBXBuildFile; fileRef = AA0972CB0B6947A800A705E9 /* SVGInlineTextBox.h */; };
    38233825                AA21ECCA0ABF0FBA002B834C /* CSSCursorImageValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA0978ED0ABAA6E100874480 /* CSSCursorImageValue.cpp */; };
    38243826                AA21ECCD0ABF0FC6002B834C /* CSSCursorImageValue.h in Headers */ = {isa = PBXBuildFile; fileRef = AA0978EE0ABAA6E100874480 /* CSSCursorImageValue.h */; settings = {ATTRIBUTES = (Private, ); }; };
     
    41294131                B25DFAAF0B2E2929000E6510 /* JSSVGMatrixCustom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B25DFAAE0B2E2929000E6510 /* JSSVGMatrixCustom.cpp */; };
    41304132                B262B8040D1F32D000158F09 /* SVGFont.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B262B8030D1F32D000158F09 /* SVGFont.cpp */; };
    4131                 B26554EA0B80D74900A50EC3 /* RenderSVGTextPath.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B26554E80B80D74900A50EC3 /* RenderSVGTextPath.cpp */; };
    4132                 B26554EB0B80D74900A50EC3 /* RenderSVGTextPath.h in Headers */ = {isa = PBXBuildFile; fileRef = B26554E90B80D74900A50EC3 /* RenderSVGTextPath.h */; };
    41334133                B266CD4D0C3AEC6500EB08D2 /* JSSVGException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B266CD4B0C3AEC6500EB08D2 /* JSSVGException.cpp */; };
    41344134                B266CD4E0C3AEC6500EB08D2 /* JSSVGException.h in Headers */ = {isa = PBXBuildFile; fileRef = B266CD4C0C3AEC6500EB08D2 /* JSSVGException.h */; };
     
    60506050                084DBA9E0ED39D360038C226 /* WMLVariables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMLVariables.h; sourceTree = "<group>"; };
    60516051                0853D72F11C9108F00B2FD42 /* SVGTextChunkLayoutInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SVGTextChunkLayoutInfo.cpp; sourceTree = "<group>"; };
    6052                 0853D73011C9109000B2FD42 /* SVGTextQuery.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SVGTextQuery.cpp; sourceTree = "<group>"; };
    6053                 0853D73111C9109000B2FD42 /* SVGTextQuery.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVGTextQuery.h; sourceTree = "<group>"; };
     6052                0854B0021255E4E600B9CDD0 /* RenderSVGInline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGInline.cpp; sourceTree = "<group>"; };
     6053                0854B0031255E4E600B9CDD0 /* RenderSVGInline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RenderSVGInline.h; sourceTree = "<group>"; };
     6054                0854B0041255E4E600B9CDD0 /* RenderSVGInlineText.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGInlineText.cpp; sourceTree = "<group>"; };
     6055                0854B0051255E4E600B9CDD0 /* RenderSVGInlineText.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RenderSVGInlineText.h; sourceTree = "<group>"; };
     6056                0854B0061255E4E600B9CDD0 /* RenderSVGText.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGText.cpp; sourceTree = "<group>"; };
     6057                0854B0071255E4E600B9CDD0 /* RenderSVGText.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RenderSVGText.h; sourceTree = "<group>"; };
     6058                0854B0081255E4E600B9CDD0 /* RenderSVGTextPath.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGTextPath.cpp; sourceTree = "<group>"; };
     6059                0854B0091255E4E600B9CDD0 /* RenderSVGTextPath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RenderSVGTextPath.h; sourceTree = "<group>"; };
     6060                0854B00A1255E4E600B9CDD0 /* RenderSVGTSpan.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGTSpan.cpp; sourceTree = "<group>"; };
     6061                0854B00B1255E4E600B9CDD0 /* RenderSVGTSpan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RenderSVGTSpan.h; sourceTree = "<group>"; };
     6062                0854B00C1255E4E600B9CDD0 /* SVGInlineFlowBox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SVGInlineFlowBox.cpp; sourceTree = "<group>"; };
     6063                0854B00D1255E4E600B9CDD0 /* SVGInlineFlowBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVGInlineFlowBox.h; sourceTree = "<group>"; };
     6064                0854B00E1255E4E600B9CDD0 /* SVGInlineTextBox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SVGInlineTextBox.cpp; sourceTree = "<group>"; };
     6065                0854B00F1255E4E600B9CDD0 /* SVGInlineTextBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVGInlineTextBox.h; sourceTree = "<group>"; };
     6066                0854B0101255E4E600B9CDD0 /* SVGRootInlineBox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SVGRootInlineBox.cpp; sourceTree = "<group>"; };
     6067                0854B0111255E4E600B9CDD0 /* SVGRootInlineBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVGRootInlineBox.h; sourceTree = "<group>"; };
     6068                0854B0121255E4E600B9CDD0 /* SVGTextQuery.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SVGTextQuery.cpp; sourceTree = "<group>"; };
     6069                0854B0131255E4E600B9CDD0 /* SVGTextQuery.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVGTextQuery.h; sourceTree = "<group>"; };
    60546070                08563BB2117861770012B578 /* RenderSVGResourcePattern.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGResourcePattern.cpp; sourceTree = "<group>"; };
    60556071                08563BB3117861770012B578 /* RenderSVGResourcePattern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RenderSVGResourcePattern.h; sourceTree = "<group>"; };
     
    79017917                853CA9CC0AEEC5E9002372DC /* RenderSVGImage.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGImage.cpp; sourceTree = "<group>"; };
    79027918                853CA9CD0AEEC5E9002372DC /* RenderSVGImage.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = RenderSVGImage.h; sourceTree = "<group>"; };
    7903                 853CA9CE0AEEC5E9002372DC /* RenderSVGInline.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGInline.cpp; sourceTree = "<group>"; };
    7904                 853CA9CF0AEEC5E9002372DC /* RenderSVGInline.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = RenderSVGInline.h; sourceTree = "<group>"; };
    7905                 853CA9D00AEEC5E9002372DC /* RenderSVGInlineText.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGInlineText.cpp; sourceTree = "<group>"; };
    7906                 853CA9D10AEEC5E9002372DC /* RenderSVGInlineText.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = RenderSVGInlineText.h; sourceTree = "<group>"; };
    7907                 853CA9D20AEEC5E9002372DC /* RenderSVGText.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGText.cpp; sourceTree = "<group>"; };
    7908                 853CA9D30AEEC5E9002372DC /* RenderSVGText.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = RenderSVGText.h; sourceTree = "<group>"; };
    7909                 853CA9D40AEEC5E9002372DC /* RenderSVGTSpan.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGTSpan.cpp; sourceTree = "<group>"; };
    7910                 853CA9D50AEEC5E9002372DC /* RenderSVGTSpan.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = RenderSVGTSpan.h; sourceTree = "<group>"; };
    7911                 853CA9E20AEEC608002372DC /* SVGInlineFlowBox.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SVGInlineFlowBox.cpp; sourceTree = "<group>"; };
    7912                 853CA9E30AEEC608002372DC /* SVGInlineFlowBox.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SVGInlineFlowBox.h; sourceTree = "<group>"; };
    7913                 853CA9E40AEEC608002372DC /* SVGRootInlineBox.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SVGRootInlineBox.cpp; sourceTree = "<group>"; };
    7914                 853CA9E50AEEC608002372DC /* SVGRootInlineBox.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SVGRootInlineBox.h; sourceTree = "<group>"; };
    79157919                853CA9EA0AEEC63C002372DC /* RenderForeignObject.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RenderForeignObject.cpp; sourceTree = "<group>"; };
    79167920                853CA9EB0AEEC63C002372DC /* RenderForeignObject.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = RenderForeignObject.h; sourceTree = "<group>"; };
     
    95679571                A9D248040D757E7D00FDF959 /* JSDOMMimeTypeArray.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JSDOMMimeTypeArray.cpp; sourceTree = "<group>"; };
    95689572                A9D248050D757E7D00FDF959 /* JSDOMMimeTypeArray.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = JSDOMMimeTypeArray.h; sourceTree = "<group>"; };
    9569                 AA0972CA0B6947A800A705E9 /* SVGInlineTextBox.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SVGInlineTextBox.cpp; sourceTree = "<group>"; };
    9570                 AA0972CB0B6947A800A705E9 /* SVGInlineTextBox.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SVGInlineTextBox.h; sourceTree = "<group>"; };
    95719573                AA0978ED0ABAA6E100874480 /* CSSCursorImageValue.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CSSCursorImageValue.cpp; sourceTree = "<group>"; };
    95729574                AA0978EE0ABAA6E100874480 /* CSSCursorImageValue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CSSCursorImageValue.h; sourceTree = "<group>"; };
     
    1002010022                B25DFAAE0B2E2929000E6510 /* JSSVGMatrixCustom.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JSSVGMatrixCustom.cpp; sourceTree = "<group>"; };
    1002110023                B262B8030D1F32D000158F09 /* SVGFont.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SVGFont.cpp; sourceTree = "<group>"; };
    10022                 B26554E80B80D74900A50EC3 /* RenderSVGTextPath.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGTextPath.cpp; sourceTree = "<group>"; };
    10023                 B26554E90B80D74900A50EC3 /* RenderSVGTextPath.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = RenderSVGTextPath.h; sourceTree = "<group>"; };
    1002410024                B266CD4B0C3AEC6500EB08D2 /* JSSVGException.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JSSVGException.cpp; sourceTree = "<group>"; };
    1002510025                B266CD4C0C3AEC6500EB08D2 /* JSSVGException.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = JSSVGException.h; sourceTree = "<group>"; };
     
    1163911639                        isa = PBXGroup;
    1164011640                        children = (
     11641                                0854B0021255E4E600B9CDD0 /* RenderSVGInline.cpp */,
     11642                                0854B0031255E4E600B9CDD0 /* RenderSVGInline.h */,
     11643                                0854B0041255E4E600B9CDD0 /* RenderSVGInlineText.cpp */,
     11644                                0854B0051255E4E600B9CDD0 /* RenderSVGInlineText.h */,
     11645                                0854B0061255E4E600B9CDD0 /* RenderSVGText.cpp */,
     11646                                0854B0071255E4E600B9CDD0 /* RenderSVGText.h */,
     11647                                0854B0081255E4E600B9CDD0 /* RenderSVGTextPath.cpp */,
     11648                                0854B0091255E4E600B9CDD0 /* RenderSVGTextPath.h */,
     11649                                0854B00A1255E4E600B9CDD0 /* RenderSVGTSpan.cpp */,
     11650                                0854B00B1255E4E600B9CDD0 /* RenderSVGTSpan.h */,
     11651                                0854B00C1255E4E600B9CDD0 /* SVGInlineFlowBox.cpp */,
     11652                                0854B00D1255E4E600B9CDD0 /* SVGInlineFlowBox.h */,
     11653                                0854B00E1255E4E600B9CDD0 /* SVGInlineTextBox.cpp */,
     11654                                0854B00F1255E4E600B9CDD0 /* SVGInlineTextBox.h */,
     11655                                0854B0101255E4E600B9CDD0 /* SVGRootInlineBox.cpp */,
     11656                                0854B0111255E4E600B9CDD0 /* SVGRootInlineBox.h */,
    1164111657                                08F0BFBD1255C53C00075185 /* SVGTextChunk.cpp */,
    1164211658                                08F0BFBE1255C53C00075185 /* SVGTextChunk.h */,
     
    1164811664                                08F0BFC01255C53C00075185 /* SVGTextMetrics.cpp */,
    1164911665                                08F0BFC11255C53C00075185 /* SVGTextMetrics.h */,
     11666                                0854B0121255E4E600B9CDD0 /* SVGTextQuery.cpp */,
     11667                                0854B0131255E4E600B9CDD0 /* SVGTextQuery.h */,
    1165011668                        );
    1165111669                        path = svg;
     
    1765617674                                853CA9CC0AEEC5E9002372DC /* RenderSVGImage.cpp */,
    1765717675                                853CA9CD0AEEC5E9002372DC /* RenderSVGImage.h */,
    17658                                 853CA9CE0AEEC5E9002372DC /* RenderSVGInline.cpp */,
    17659                                 853CA9CF0AEEC5E9002372DC /* RenderSVGInline.h */,
    17660                                 853CA9D00AEEC5E9002372DC /* RenderSVGInlineText.cpp */,
    17661                                 853CA9D10AEEC5E9002372DC /* RenderSVGInlineText.h */,
    1766217676                                A8F5C0B70F9285AC0098E06B /* RenderSVGModelObject.cpp */,
    1766317677                                A8F5C0B60F9285AC0098E06B /* RenderSVGModelObject.h */,
     
    1769017704                                08DAB9B81103D9A5003E7ABA /* RenderSVGShadowTreeRootContainer.cpp */,
    1769117705                                08DAB9B91103D9A5003E7ABA /* RenderSVGShadowTreeRootContainer.h */,
    17692                                 853CA9D20AEEC5E9002372DC /* RenderSVGText.cpp */,
    17693                                 853CA9D30AEEC5E9002372DC /* RenderSVGText.h */,
    17694                                 B26554E80B80D74900A50EC3 /* RenderSVGTextPath.cpp */,
    17695                                 B26554E90B80D74900A50EC3 /* RenderSVGTextPath.h */,
    1769617706                                A8A909AB0CBCD6B50029B807 /* RenderSVGTransformableContainer.cpp */,
    1769717707                                A8A909AA0CBCD6B50029B807 /* RenderSVGTransformableContainer.h */,
    17698                                 853CA9D40AEEC5E9002372DC /* RenderSVGTSpan.cpp */,
    17699                                 853CA9D50AEEC5E9002372DC /* RenderSVGTSpan.h */,
    1770017708                                B2CCEC450C6CA9F1006A5424 /* RenderSVGViewportContainer.cpp */,
    1770117709                                B2CCEC460C6CA9F1006A5424 /* RenderSVGViewportContainer.h */,
     
    1774617754                                08C46B671212F15D0011AF40 /* SVGImageBufferTools.cpp */,
    1774717755                                08C46B681212F15D0011AF40 /* SVGImageBufferTools.h */,
    17748                                 853CA9E20AEEC608002372DC /* SVGInlineFlowBox.cpp */,
    17749                                 853CA9E30AEEC608002372DC /* SVGInlineFlowBox.h */,
    17750                                 AA0972CA0B6947A800A705E9 /* SVGInlineTextBox.cpp */,
    17751                                 AA0972CB0B6947A800A705E9 /* SVGInlineTextBox.h */,
    1775217756                                08385FF510F0186000BFE07B /* SVGMarkerData.h */,
    1775317757                                08735FB610E91232006D6FAD /* SVGMarkerLayoutInfo.cpp */,
     
    1776317767                                085B05C011FAE16C004D65F6 /* SVGResourcesCycleSolver.cpp */,
    1776417768                                085B05C111FAE16C004D65F6 /* SVGResourcesCycleSolver.h */,
    17765                                 853CA9E40AEEC608002372DC /* SVGRootInlineBox.cpp */,
    17766                                 853CA9E50AEEC608002372DC /* SVGRootInlineBox.h */,
    1776717769                                08DAB9C01103D9C1003E7ABA /* SVGShadowTreeElements.cpp */,
    1776817770                                08DAB9C11103D9C1003E7ABA /* SVGShadowTreeElements.h */,
     
    1777117773                                083F529711957FBE00653EBE /* SVGTextLayoutUtilities.cpp */,
    1777217774                                083F529811957FBE00653EBE /* SVGTextLayoutUtilities.h */,
    17773                                 0853D73011C9109000B2FD42 /* SVGTextQuery.cpp */,
    17774                                 0853D73111C9109000B2FD42 /* SVGTextQuery.h */,
    1777517775                                A8CFF04C0A154F09000A4234 /* TableLayout.h */,
    1777617776                                AB014DE10E689A4300E10445 /* TextControlInnerElements.cpp */,
     
    2028220282                                A809F1AA0B737FB6002E4D7F /* RenderSVGHiddenContainer.h in Headers */,
    2028320283                                853CA9D90AEEC5E9002372DC /* RenderSVGImage.h in Headers */,
    20284                                 853CA9DB0AEEC5E9002372DC /* RenderSVGInline.h in Headers */,
    20285                                 853CA9DD0AEEC5E9002372DC /* RenderSVGInlineText.h in Headers */,
    2028620284                                A8F5C0B80F9285AC0098E06B /* RenderSVGModelObject.h in Headers */,
    2028720285                                083192AA112B43050083C3B9 /* RenderSVGResource.h in Headers */,
     
    2029920297                                AA31B5B50C1DFD1000AE7083 /* RenderSVGRoot.h in Headers */,
    2030020298                                08DAB9BB1103D9A5003E7ABA /* RenderSVGShadowTreeRootContainer.h in Headers */,
    20301                                 853CA9DF0AEEC5E9002372DC /* RenderSVGText.h in Headers */,
    20302                                 B26554EB0B80D74900A50EC3 /* RenderSVGTextPath.h in Headers */,
    2030320299                                A8A909AC0CBCD6B50029B807 /* RenderSVGTransformableContainer.h in Headers */,
    20304                                 853CA9E10AEEC5E9002372DC /* RenderSVGTSpan.h in Headers */,
    2030520300                                B2CCEC480C6CA9F1006A5424 /* RenderSVGViewportContainer.h in Headers */,
    2030620301                                A8DF4AEB0980C42C0052981B /* RenderTable.h in Headers */,
     
    2058720582                                B2227A2D0D00BF220071B782 /* SVGImageElement.h in Headers */,
    2058820583                                B28C6A2A0D00C44800334AA4 /* SVGImageLoader.h in Headers */,
    20589                                 853CA9E70AEEC608002372DC /* SVGInlineFlowBox.h in Headers */,
    20590                                 AA0972CD0B6947A800A705E9 /* SVGInlineTextBox.h in Headers */,
    2059120584                                B2227A300D00BF220071B782 /* SVGLangSpace.h in Headers */,
    2059220585                                B2227A330D00BF220071B782 /* SVGLength.h in Headers */,
     
    2065020643                                084D0E3F11F5816100081E1A /* SVGResourcesCache.h in Headers */,
    2065120644                                085B05C311FAE16C004D65F6 /* SVGResourcesCycleSolver.h in Headers */,
    20652                                 853CA9E90AEEC608002372DC /* SVGRootInlineBox.h in Headers */,
    2065320645                                B2227AA30D00BF220071B782 /* SVGScriptElement.h in Headers */,
    2065420646                                B2227AA60D00BF220071B782 /* SVGSetElement.h in Headers */,
     
    2067420666                                B2227ACE0D00BF220071B782 /* SVGTextPathElement.h in Headers */,
    2067520667                                B2227AD10D00BF220071B782 /* SVGTextPositioningElement.h in Headers */,
    20676                                 0853D73411C9109000B2FD42 /* SVGTextQuery.h in Headers */,
    2067720668                                B2227AD40D00BF220071B782 /* SVGTitleElement.h in Headers */,
    2067820669                                B2227AD70D00BF220071B782 /* SVGTransform.h in Headers */,
     
    2093820929                                08F0BFC41255C53C00075185 /* SVGTextFragment.h in Headers */,
    2093920930                                08F0BFC61255C53C00075185 /* SVGTextMetrics.h in Headers */,
     20931                                0854B0151255E4E600B9CDD0 /* RenderSVGInline.h in Headers */,
     20932                                0854B0171255E4E600B9CDD0 /* RenderSVGInlineText.h in Headers */,
     20933                                0854B0191255E4E600B9CDD0 /* RenderSVGText.h in Headers */,
     20934                                0854B01B1255E4E600B9CDD0 /* RenderSVGTextPath.h in Headers */,
     20935                                0854B01D1255E4E600B9CDD0 /* RenderSVGTSpan.h in Headers */,
     20936                                0854B01F1255E4E600B9CDD0 /* SVGInlineFlowBox.h in Headers */,
     20937                                0854B0211255E4E600B9CDD0 /* SVGInlineTextBox.h in Headers */,
     20938                                0854B0231255E4E600B9CDD0 /* SVGRootInlineBox.h in Headers */,
     20939                                0854B0251255E4E600B9CDD0 /* SVGTextQuery.h in Headers */,
    2094020940                        );
    2094120941                        runOnlyForDeploymentPostprocessing = 0;
     
    2288222882                                A809F1AB0B737FB6002E4D7F /* RenderSVGHiddenContainer.cpp in Sources */,
    2288322883                                853CA9D80AEEC5E9002372DC /* RenderSVGImage.cpp in Sources */,
    22884                                 853CA9DA0AEEC5E9002372DC /* RenderSVGInline.cpp in Sources */,
    22885                                 853CA9DC0AEEC5E9002372DC /* RenderSVGInlineText.cpp in Sources */,
    2288622884                                A8F5C0B90F9285AC0098E06B /* RenderSVGModelObject.cpp in Sources */,
    2288722885                                08563BD0117865F50012B578 /* RenderSVGResource.cpp in Sources */,
     
    2289922897                                AA31B5B40C1DFD1000AE7083 /* RenderSVGRoot.cpp in Sources */,
    2290022898                                08DAB9BA1103D9A5003E7ABA /* RenderSVGShadowTreeRootContainer.cpp in Sources */,
    22901                                 853CA9DE0AEEC5E9002372DC /* RenderSVGText.cpp in Sources */,
    22902                                 B26554EA0B80D74900A50EC3 /* RenderSVGTextPath.cpp in Sources */,
    2290322899                                A8A909AD0CBCD6B50029B807 /* RenderSVGTransformableContainer.cpp in Sources */,
    22904                                 853CA9E00AEEC5E9002372DC /* RenderSVGTSpan.cpp in Sources */,
    2290522900                                B2CCEC470C6CA9F1006A5424 /* RenderSVGViewportContainer.cpp in Sources */,
    2290622901                                A8DF4AEC0980C42C0052981B /* RenderTable.cpp in Sources */,
     
    2316323158                                B2227A2C0D00BF220071B782 /* SVGImageElement.cpp in Sources */,
    2316423159                                B28C6A290D00C44800334AA4 /* SVGImageLoader.cpp in Sources */,
    23165                                 853CA9E60AEEC608002372DC /* SVGInlineFlowBox.cpp in Sources */,
    23166                                 AA0972CC0B6947A800A705E9 /* SVGInlineTextBox.cpp in Sources */,
    2316723160                                B2227A2F0D00BF220071B782 /* SVGLangSpace.cpp in Sources */,
    2316823161                                B2227A320D00BF220071B782 /* SVGLength.cpp in Sources */,
     
    2322023213                                084D0E3E11F5816100081E1A /* SVGResourcesCache.cpp in Sources */,
    2322123214                                085B05C211FAE16C004D65F6 /* SVGResourcesCycleSolver.cpp in Sources */,
    23222                                 853CA9E80AEEC608002372DC /* SVGRootInlineBox.cpp in Sources */,
    2322323215                                B2227AA20D00BF220071B782 /* SVGScriptElement.cpp in Sources */,
    2322423216                                B2227AA50D00BF220071B782 /* SVGSetElement.cpp in Sources */,
     
    2324423236                                B2227ACD0D00BF220071B782 /* SVGTextPathElement.cpp in Sources */,
    2324523237                                B2227AD00D00BF220071B782 /* SVGTextPositioningElement.cpp in Sources */,
    23246                                 0853D73311C9109000B2FD42 /* SVGTextQuery.cpp in Sources */,
    2324723238                                B2227AD30D00BF220071B782 /* SVGTitleElement.cpp in Sources */,
    2324823239                                B2227AD60D00BF220071B782 /* SVGTransform.cpp in Sources */,
     
    2346423455                                08F0BFC21255C53C00075185 /* SVGTextChunk.cpp in Sources */,
    2346523456                                08F0BFC51255C53C00075185 /* SVGTextMetrics.cpp in Sources */,
     23457                                0854B0141255E4E600B9CDD0 /* RenderSVGInline.cpp in Sources */,
     23458                                0854B0161255E4E600B9CDD0 /* RenderSVGInlineText.cpp in Sources */,
     23459                                0854B0181255E4E600B9CDD0 /* RenderSVGText.cpp in Sources */,
     23460                                0854B01A1255E4E600B9CDD0 /* RenderSVGTextPath.cpp in Sources */,
     23461                                0854B01C1255E4E600B9CDD0 /* RenderSVGTSpan.cpp in Sources */,
     23462                                0854B01E1255E4E600B9CDD0 /* SVGInlineFlowBox.cpp in Sources */,
     23463                                0854B0201255E4E600B9CDD0 /* SVGInlineTextBox.cpp in Sources */,
     23464                                0854B0221255E4E600B9CDD0 /* SVGRootInlineBox.cpp in Sources */,
     23465                                0854B0241255E4E600B9CDD0 /* SVGTextQuery.cpp in Sources */,
    2346623466                        );
    2346723467                        runOnlyForDeploymentPostprocessing = 0;
  • trunk/WebCore/rendering/RenderSVGAllInOne.cpp

    r66955 r68874  
    3131#include "RenderSVGHiddenContainer.cpp"
    3232#include "RenderSVGImage.cpp"
    33 #include "RenderSVGInline.cpp"
    34 #include "RenderSVGInlineText.cpp"
    3533#include "RenderSVGModelObject.cpp"
    3634#include "RenderSVGResource.cpp"
     
    4846#include "RenderSVGRoot.cpp"
    4947#include "RenderSVGShadowTreeRootContainer.cpp"
    50 #include "RenderSVGTSpan.cpp"
    51 #include "RenderSVGText.cpp"
    52 #include "RenderSVGTextPath.cpp"
    5348#include "RenderSVGTransformableContainer.cpp"
    5449#include "RenderSVGViewportContainer.cpp"
     
    5651#include "SVGCharacterLayoutInfo.cpp"
    5752#include "SVGImageBufferTools.cpp"
    58 #include "SVGInlineFlowBox.cpp"
    59 #include "SVGInlineTextBox.cpp"
    6053#include "SVGMarkerLayoutInfo.cpp"
    6154#include "SVGRenderSupport.cpp"
     
    6457#include "SVGResourcesCache.cpp"
    6558#include "SVGResourcesCycleSolver.cpp"
    66 #include "SVGRootInlineBox.cpp"
    6759#include "SVGShadowTreeElements.cpp"
    6860#include "SVGTextChunkLayoutInfo.cpp"
    6961#include "SVGTextLayoutUtilities.cpp"
    70 #include "SVGTextQuery.cpp"
     62
     63// FIXME: As soon as all SVG renderers live in rendering/svg, this file should be moved there as well, removing the need for the svg/ includes below.
     64#include "svg/RenderSVGInline.cpp"
     65#include "svg/RenderSVGInlineText.cpp"
     66#include "svg/RenderSVGTSpan.cpp"
     67#include "svg/RenderSVGText.cpp"
     68#include "svg/RenderSVGTextPath.cpp"
     69#include "svg/SVGInlineFlowBox.cpp"
     70#include "svg/SVGInlineTextBox.cpp"
     71#include "svg/SVGRootInlineBox.cpp"
     72#include "svg/SVGTextQuery.cpp"
Note: See TracChangeset for help on using the changeset viewer.