[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

yurys at chromium.org yurys at chromium.org
Mon Feb 21 00:30:16 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 942106b00f1ac9561428fd5bd1373321cc11b0f4
Author: yurys at chromium.org <yurys at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Feb 1 09:37:23 2011 +0000

    2011-02-01  Yury Semikhatsky  <yurys at chromium.org>
    
            Unreviewed. Fix Chromium Debug compilation broken by r77228.
    
            [Chromium] Autofill should work with HTML5 form elements
            https://bugs.webkit.org/show_bug.cgi?id=51809
    
            * src/WebInputElement.cpp:
            (WebKit::toWebInputElement):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@77232 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebKit/chromium/ChangeLog b/Source/WebKit/chromium/ChangeLog
index 7c18bd6..a266a78 100644
--- a/Source/WebKit/chromium/ChangeLog
+++ b/Source/WebKit/chromium/ChangeLog
@@ -1,3 +1,13 @@
+2011-02-01  Yury Semikhatsky  <yurys at chromium.org>
+
+        Unreviewed. Fix Chromium Debug compilation broken by r77228.
+
+        [Chromium] Autofill should work with HTML5 form elements
+        https://bugs.webkit.org/show_bug.cgi?id=51809
+
+        * src/WebInputElement.cpp:
+        (WebKit::toWebInputElement):
+
 2011-02-01  Naoki Takano  <takano.naoki at gmail.com>
 
         Reviewed by Darin Fisher.
diff --git a/Source/WebKit/chromium/src/WebInputElement.cpp b/Source/WebKit/chromium/src/WebInputElement.cpp
index 0509e77..f487c12 100644
--- a/Source/WebKit/chromium/src/WebInputElement.cpp
+++ b/Source/WebKit/chromium/src/WebInputElement.cpp
@@ -179,7 +179,7 @@ WebInputElement* toWebInputElement(WebElement* webElement)
     if (!inputElement)
         return 0;
 
-    ASSERT(inputElement->isHTMLElement());
+    ASSERT(webElement->unwrap<Element>()->isHTMLElement());
 
     return static_cast<WebInputElement*>(webElement);
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list