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

andreas.kling at nokia.com andreas.kling at nokia.com
Wed Dec 22 15:50:36 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit f312218b3dd3af1dd7cecf118f8c2cdc5c2bbcbe
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Nov 14 19:11:42 2010 +0000

    2010-11-12  Tenghui Zhu  <ztenghui at google.com>
    
            Reviewed by Andreas Kling.
    
            [V8] Code generation script error in generating the SVGStaticListPropertyTearOff
            https://bugs.webkit.org/show_bug.cgi?id=49463
    
            * bindings/scripts/CodeGeneratorV8.pm: The svgNativeType is the one containing
            the SVGStaticListPropertyTearOff string, not the svgListPropertyType.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71984 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 87e4768..3cca0c3 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-11-12  Tenghui Zhu  <ztenghui at google.com>
+
+        Reviewed by Andreas Kling.
+
+        [V8] Code generation script error in generating the SVGStaticListPropertyTearOff
+        https://bugs.webkit.org/show_bug.cgi?id=49463
+
+        * bindings/scripts/CodeGeneratorV8.pm: The svgNativeType is the one containing
+        the SVGStaticListPropertyTearOff string, not the svgListPropertyType.
+
 2010-11-14  Patrick Gansterer  <paroga at webkit.org>
 
         Reviewed by Andreas Kling.
diff --git a/WebCore/bindings/scripts/CodeGeneratorV8.pm b/WebCore/bindings/scripts/CodeGeneratorV8.pm
index 25eea7f..27404b8 100644
--- a/WebCore/bindings/scripts/CodeGeneratorV8.pm
+++ b/WebCore/bindings/scripts/CodeGeneratorV8.pm
@@ -252,8 +252,8 @@ sub GenerateHeader
     
     push(@headerContent, "\nnamespace WebCore {\n");
     push(@headerContent, "\ntemplate<typename PropertyType> class SVGPropertyTearOff;\n") if $svgPropertyType;
-    if ($svgListPropertyType) {
-        if ($svgListPropertyType =~ /SVGStaticListPropertyTearOff/) {
+    if ($svgNativeType) {
+        if ($svgNativeType =~ /SVGStaticListPropertyTearOff/) {
             push(@headerContent, "\ntemplate<typename PropertyType> class SVGStaticListPropertyTearOff;\n");
         } else {
             push(@headerContent, "\ntemplate<typename PropertyType> class SVGListPropertyTearOff;\n");

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list