<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>118214</bug_id>
          
          <creation_ts>2013-06-29 07:16:10 -0700</creation_ts>
          <short_desc>Build fix for unguarded SVGGraphicsElement</short_desc>
          <delta_ts>2013-06-29 08:15:50 -0700</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>SVG</component>
          <version>528+ (Nightly build)</version>
          <rep_platform>Unspecified</rep_platform>
          <op_sys>Unspecified</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>0</everconfirmed>
          <reporter name="ChangSeok Oh">kevin.cs.oh</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>cdumez</cc>
    
    <cc>commit-queue</cc>
    
    <cc>d-r</cc>
    
    <cc>esprehn+autocc</cc>
    
    <cc>fmalita</cc>
    
    <cc>pdr</cc>
    
    <cc>schenney</cc>
    
    <cc>zimmermann</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>904853</commentid>
    <comment_count>0</comment_count>
    <who name="ChangSeok Oh">kevin.cs.oh</who>
    <bug_when>2013-06-29 07:16:10 -0700</bug_when>
    <thetext>I faced following break when disabling svg features.

[shivamidow@LenovoStation:Release]$ make -j 4
make[1]: Entering directory `/home/shivamidow/Projects/WebKit/WebKitBuild/Release&apos;
/bin/mkdir -p ./.deps/DerivedSources
  CXXLD  libwebkit2gtkinjectedbundle.la
  CXXLD  libjavascriptcoregtk-3.0.la
  CXXLD  libPlatform.la
  CXXLD  libPlatformGtk.la
  CXX    DerivedSources/WebCore/libWebCore_la-JSDOMWindow.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSEventTarget.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSFile.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSFileCallback.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSFileEntry.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSFileEntrySync.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSFileError.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSFileException.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSFileList.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSFileReader.lo
In file included from DerivedSources/WebCore/JSDOMWindow.cpp:216:0:
DerivedSources/WebCore/JSSVGGraphicsElement.h:32:56: error: expected class-name before &apos;{&apos; token
DerivedSources/WebCore/JSSVGGraphicsElement.h:34:13: error: &apos;JSSVGStyledElement&apos; does not name a type
DerivedSources/WebCore/JSSVGGraphicsElement.h:35:112: error: &apos;SVGGraphicsElement&apos; was not declared in this scope
In file included from DerivedSources/WebCore/JSDOMWindow.cpp:216:0:
DerivedSources/WebCore/JSSVGGraphicsElement.h:35:130: error: template argument 1 is invalid
DerivedSources/WebCore/JSSVGGraphicsElement.h:54:74: error: &apos;SVGGraphicsElement&apos; was not declared in this scope
DerivedSources/WebCore/JSSVGGraphicsElement.h:54:92: error: template argument 1 is invalid
DerivedSources/WebCore/JSSVGGraphicsElement.h:56:145: error: &apos;Base&apos; has not been declared
  CXX    DerivedSources/WebCore/libWebCore_la-JSFileReaderSync.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSFileSystemCallback.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSFileWriter.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSFileWriterCallback.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSFileWriterSync.lo
In file included from ../../Source/JavaScriptCore/runtime/JSCJSValueInlines.h:31:0,
                 from ../../Source/JavaScriptCore/runtime/Operations.h:27,
                 from ../../Source/WebCore/bindings/js/BindingState.h:35,
                 from ../../Source/WebCore/bindings/js/JSDOMBinding.h:27,
                 from DerivedSources/WebCore/JSDOMWindow.h:25,
                 from DerivedSources/WebCore/JSDOMWindow.cpp:22:
../../Source/JavaScriptCore/runtime/JSCellInlines.h: In instantiation of &apos;void* JSC::allocateCell(JSC::Heap&amp;, size_t) [with T = WebCore::JSSVGGraphicsElement; JSC::Heap = JSC::Heap; size_t = long unsigned int]&apos;:
../../Source/JavaScriptCore/runtime/JSCellInlines.h:104:43:   required from &apos;void* JSC::allocateCell(JSC::Heap&amp;) [with T = WebCore::JSSVGGraphicsElement; JSC::Heap = JSC::Heap]&apos;
DerivedSources/WebCore/JSSVGGraphicsElement.h:37:114:   required from here
../../Source/JavaScriptCore/runtime/JSCellInlines.h:91:5: error: &apos;hasImmortalStructure&apos; is not a member of &apos;WebCore::JSSVGGraphicsElement&apos;
../../Source/JavaScriptCore/runtime/JSCellInlines.h:91:5: error: &apos;needsDestruction&apos; is not a member of &apos;WebCore::JSSVGGraphicsElement&apos;
../../Source/JavaScriptCore/runtime/JSCellInlines.h:93:10: error: &apos;needsDestruction&apos; is not a member of &apos;WebCore::JSSVGGraphicsElement&apos;
  CXX    DerivedSources/WebCore/libWebCore_la-JSFloat32Array.lo
  CXX    DerivedSources/WebCore/libWebCore_la-JSFloat64Array.lo
make[1]: *** [DerivedSources/WebCore/libWebCore_la-JSDOMWindow.lo] Error 1
make[1]: *** Waiting for unfinished jobs....
make[1]: Leaving directory `/home/shivamidow/Projects/WebKit/WebKitBuild/Release&apos;
make: *** [all] Error 2</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>904854</commentid>
    <comment_count>1</comment_count>
      <attachid>205767</attachid>
    <who name="ChangSeok Oh">kevin.cs.oh</who>
    <bug_when>2013-06-29 07:21:29 -0700</bug_when>
    <thetext>Created attachment 205767
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>904856</commentid>
    <comment_count>2</comment_count>
      <attachid>205767</attachid>
    <who name="Chris Dumez">cdumez</who>
    <bug_when>2013-06-29 07:27:43 -0700</bug_when>
    <thetext>Comment on attachment 205767
Patch

Looks good, thanks. r=me.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>904859</commentid>
    <comment_count>3</comment_count>
      <attachid>205767</attachid>
    <who name="WebKit Commit Bot">commit-queue</who>
    <bug_when>2013-06-29 08:15:48 -0700</bug_when>
    <thetext>Comment on attachment 205767
Patch

Clearing flags on attachment: 205767

Committed r152210: &lt;http://trac.webkit.org/changeset/152210&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>904860</commentid>
    <comment_count>4</comment_count>
    <who name="WebKit Commit Bot">commit-queue</who>
    <bug_when>2013-06-29 08:15:50 -0700</bug_when>
    <thetext>All reviewed patches have been landed.  Closing bug.</thetext>
  </long_desc>
      
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>205767</attachid>
            <date>2013-06-29 07:21:29 -0700</date>
            <delta_ts>2013-06-29 08:15:48 -0700</delta_ts>
            <desc>Patch</desc>
            <filename>bug-118214-20130629231928.patch</filename>
            <type>text/plain</type>
            <size>1385</size>
            <attacher name="ChangSeok Oh">kevin.cs.oh</attacher>
            
              <data encoding="base64">U3VidmVyc2lvbiBSZXZpc2lvbjogMTUyMjA4CmRpZmYgLS1naXQgYS9Tb3VyY2UvV2ViQ29yZS9D
aGFuZ2VMb2cgYi9Tb3VyY2UvV2ViQ29yZS9DaGFuZ2VMb2cKaW5kZXggZThiOTUwN2MzYjZmNmI1
NDI3ZmMwNjQzZGFiZGYwYmZmMzhhNzc4OC4uZTc5N2FmMDVjOTkxYjJjNzEwMmU2YTRjNmFmMzlj
ZjJjNDIzMzY2MyAxMDA2NDQKLS0tIGEvU291cmNlL1dlYkNvcmUvQ2hhbmdlTG9nCisrKyBiL1Nv
dXJjZS9XZWJDb3JlL0NoYW5nZUxvZwpAQCAtMSwzICsxLDE2IEBACisyMDEzLTA2LTI5ICBDaGFu
Z1Nlb2sgT2ggIDxjaGFuZ3Nlb2sub2hAY29sbGFib3JhLmNvbT4KKworICAgICAgICBCdWlsZCBm
aXggZm9yIHVuZ3VhcmRlZCBTVkdHcmFwaGljc0VsZW1lbnQKKyAgICAgICAgaHR0cHM6Ly9idWdz
LndlYmtpdC5vcmcvc2hvd19idWcuY2dpP2lkPTExODIxNAorCisgICAgICAgIFJldmlld2VkIGJ5
IE5PQk9EWSAoT09QUyEpLgorCisgICAgICAgIEFkZCB0aGUgU1ZHIGNvbmRpdGlvbiB0byBTVkdH
cmFwaGljc0VsZW1lbnQuaWRsCisKKyAgICAgICAgTm8gbmV3IHRlc3RzIHJlcXVpcmVkIHNpbmNl
IG5vIGZ1bmN0aW9uYWxpdHkgY2hhbmdlZC4KKworICAgICAgICAqIHN2Zy9TVkdHcmFwaGljc0Vs
ZW1lbnQuaWRsOgorCiAyMDEzLTA2LTI5ICBLYW5naWwgSGFuICA8a2FuZ2lsLmhhbkBzYW1zdW5n
LmNvbT4KIAogICAgICAgICBBZG9wdCBpcy90b0hUTUxPcHRpb25FbGVtZW50IGZvciBjb2RlIGNs
ZWFudXAKZGlmZiAtLWdpdCBhL1NvdXJjZS9XZWJDb3JlL3N2Zy9TVkdHcmFwaGljc0VsZW1lbnQu
aWRsIGIvU291cmNlL1dlYkNvcmUvc3ZnL1NWR0dyYXBoaWNzRWxlbWVudC5pZGwKaW5kZXggZDI3
NzJiMjUzNDgwYmQ4YzAzNWQ3ZjJlMGM0NjNjNWRlMDcxMzk0Ni4uZjk2ZTIzMTlmMzA1MTdiMzEw
MjJmNmMyMjllNjQ0MWVkYTQ1ZTEwZCAxMDA2NDQKLS0tIGEvU291cmNlL1dlYkNvcmUvc3ZnL1NW
R0dyYXBoaWNzRWxlbWVudC5pZGwKKysrIGIvU291cmNlL1dlYkNvcmUvc3ZnL1NWR0dyYXBoaWNz
RWxlbWVudC5pZGwKQEAgLTIzLDcgKzIzLDkgQEAKICAqIE9GIFRISVMgU09GVFdBUkUsIEVWRU4g
SUYgQURWSVNFRCBPRiBUSEUgUE9TU0lCSUxJVFkgT0YgU1VDSCBEQU1BR0UuCiAgKi8KIAotaW50
ZXJmYWNlIFNWR0dyYXBoaWNzRWxlbWVudCA6IFNWR1N0eWxlZEVsZW1lbnQgeworWworICAgIENv
bmRpdGlvbmFsPVNWRworXSBpbnRlcmZhY2UgU1ZHR3JhcGhpY3NFbGVtZW50IDogU1ZHU3R5bGVk
RWxlbWVudCB7CiAgICAgcmVhZG9ubHkgYXR0cmlidXRlIFNWR0FuaW1hdGVkVHJhbnNmb3JtTGlz
dCB0cmFuc2Zvcm07CiAKICAgICByZWFkb25seSBhdHRyaWJ1dGUgU1ZHRWxlbWVudCBuZWFyZXN0
Vmlld3BvcnRFbGVtZW50Owo=
</data>

          </attachment>
      

    </bug>

</bugzilla>