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

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:45:16 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 037f0e36180656659186cfb8874f8200abcd8f28
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 27 19:27:57 2002 +0000

    	DOM compliance. Fix for 3058100, hasFeature of HTML returns
    	false. Oops.
    
            * khtml/xml/dom_docimpl.cpp:
            (DOMImplementationImpl::hasFeature):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2187 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 523d7db..197aeb5 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,11 @@
+2002-09-28  David Hyatt  <hyatt at apple.com>
+
+	DOM compliance. Fix for 3058100, hasFeature of HTML returns
+	false. Oops.
+	
+        * khtml/xml/dom_docimpl.cpp:
+        (DOMImplementationImpl::hasFeature):
+
 2002-09-27  Darin Adler  <darin at apple.com>
 
 	- fixed 3060487 -- error connecting member slot to signal (KWQObject)
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 523d7db..197aeb5 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,11 @@
+2002-09-28  David Hyatt  <hyatt at apple.com>
+
+	DOM compliance. Fix for 3058100, hasFeature of HTML returns
+	false. Oops.
+	
+        * khtml/xml/dom_docimpl.cpp:
+        (DOMImplementationImpl::hasFeature):
+
 2002-09-27  Darin Adler  <darin at apple.com>
 
 	- fixed 3060487 -- error connecting member slot to signal (KWQObject)
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 523d7db..197aeb5 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,11 @@
+2002-09-28  David Hyatt  <hyatt at apple.com>
+
+	DOM compliance. Fix for 3058100, hasFeature of HTML returns
+	false. Oops.
+	
+        * khtml/xml/dom_docimpl.cpp:
+        (DOMImplementationImpl::hasFeature):
+
 2002-09-27  Darin Adler  <darin at apple.com>
 
 	- fixed 3060487 -- error connecting member slot to signal (KWQObject)
diff --git a/WebCore/khtml/xml/dom_docimpl.cpp b/WebCore/khtml/xml/dom_docimpl.cpp
index 98e3760..76dcc7b 100644
--- a/WebCore/khtml/xml/dom_docimpl.cpp
+++ b/WebCore/khtml/xml/dom_docimpl.cpp
@@ -83,7 +83,7 @@ bool DOMImplementationImpl::hasFeature ( const DOMString &feature, const DOMStri
     // ### update when we (fully) support the relevant features
     QString lower = feature.string().lower();
     if ((lower == "html" || lower == "xml") &&
-        (version == "1.0" || version == "" || version.isNull()))
+        (version == "1.0" || version == "null" || version == "" || version.isNull()))
         return true;
     else
         return false;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list