[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

simon.fraser at apple.com simon.fraser at apple.com
Wed Dec 22 12:20:32 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 372e5b18670eb58e3cba60e6a4ba251c94839dcf
Author: simon.fraser at apple.com <simon.fraser at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 19 17:56:38 2010 +0000

    2010-08-19  Simon Fraser  <simon.fraser at apple.com>
    
            Fix Chromium build.
    
            * svg/SVGElement.cpp:
            (WebCore::SVGElement::attributeChanged):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65683 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d9c2002..8776257 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,5 +1,12 @@
 2010-08-19  Simon Fraser  <simon.fraser at apple.com>
 
+        Fix Chromium build.
+        
+        * svg/SVGElement.cpp:
+        (WebCore::SVGElement::attributeChanged):
+
+2010-08-19  Simon Fraser  <simon.fraser at apple.com>
+
         Reviewed by Nikolas Zimmermann.
 
         HTMLElement::isContentEditable() can cause an updateStyleIfNeeded() to happen in the middle of layout
diff --git a/WebCore/svg/SVGElement.cpp b/WebCore/svg/SVGElement.cpp
index 1f99f24..9651f15 100644
--- a/WebCore/svg/SVGElement.cpp
+++ b/WebCore/svg/SVGElement.cpp
@@ -314,7 +314,7 @@ void SVGElement::attributeChanged(Attribute* attr, bool preserveDecls)
 
     // Changes to the style attribute are processed lazily (see Element::getAttribute() and related methods),
     // so we don't want changes to the style attribute to result in extra work here.
-    if (attr->name() != styleAttr)
+    if (attr->name() != HTMLNames::styleAttr)
         svgAttributeChanged(attr->name());
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list