[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:29:09 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 545b452e75ed162b6ca9feda90af37ccf4be57f2
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Mar 10 21:51:28 2004 +0000

    	Fixed: INPUT images are not part of web archives.
    
            Reviewed by rjw.
    
            * khtml/html/html_formimpl.cpp:
            (HTMLInputElementImpl::isSubresourceURLAttribute):
            * khtml/html/html_formimpl.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6199 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 090b5c6..6ccb838 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2004-03-10  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: INPUT images are not part of web archives.
+
+        Reviewed by rjw.
+
+        * khtml/html/html_formimpl.cpp:
+        (HTMLInputElementImpl::isSubresourceURLAttribute):
+        * khtml/html/html_formimpl.h:
+
 2004-03-09  Chris Blumenberg  <cblu at apple.com>
 
 	Implemented WebCore side of: <rdar://problem/3577508>: API: web archive related API's
diff --git a/WebCore/khtml/html/html_formimpl.cpp b/WebCore/khtml/html/html_formimpl.cpp
index 135a7cd..c29c255 100644
--- a/WebCore/khtml/html/html_formimpl.cpp
+++ b/WebCore/khtml/html/html_formimpl.cpp
@@ -1870,6 +1870,11 @@ bool HTMLInputElementImpl::isEditable()
     return ((m_type == TEXT) || (m_type == PASSWORD) || (m_type == ISINDEX) || (m_type == FILE));
 }
 
+bool HTMLInputElementImpl::isSubresourceURLAttribute(AttributeImpl *attr) const
+{
+    return (attr->id() == ATTR_SRC);
+}
+
 // -------------------------------------------------------------------------
 
 HTMLLabelElementImpl::HTMLLabelElementImpl(DocumentPtr *doc)
diff --git a/WebCore/khtml/html/html_formimpl.h b/WebCore/khtml/html/html_formimpl.h
index e894b41..5e323b0 100644
--- a/WebCore/khtml/html/html_formimpl.h
+++ b/WebCore/khtml/html/html_formimpl.h
@@ -333,6 +333,8 @@ public:
     virtual bool isEditable();
 
     DOMString altText() const;
+    
+    virtual bool isSubresourceURLAttribute(AttributeImpl *attr) const;
 
 protected:
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list