[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:43:22 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit bfe50b42fc04d740ceef1bf0997528dae616ea6d
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 23 23:02:15 2002 +0000

    	Found the problem with the CSS W3C page.
    
            * khtml/xml/dom_docimpl.cpp:
            (DocumentImpl::recalcStyleSelector):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2130 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 0224038..c9a43ae 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-09-23  David Hyatt  <hyatt at apple.com>
+
+	Found the problem with the CSS W3C page.
+	
+        * khtml/xml/dom_docimpl.cpp:
+        (DocumentImpl::recalcStyleSelector):
+
 2002-09-23  Darin Adler  <darin at apple.com>
 
 	WebCore part of fixes for proper layering when drawing subframes.
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 0224038..c9a43ae 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,10 @@
+2002-09-23  David Hyatt  <hyatt at apple.com>
+
+	Found the problem with the CSS W3C page.
+	
+        * khtml/xml/dom_docimpl.cpp:
+        (DocumentImpl::recalcStyleSelector):
+
 2002-09-23  Darin Adler  <darin at apple.com>
 
 	WebCore part of fixes for proper layering when drawing subframes.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 0224038..c9a43ae 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,10 @@
+2002-09-23  David Hyatt  <hyatt at apple.com>
+
+	Found the problem with the CSS W3C page.
+	
+        * khtml/xml/dom_docimpl.cpp:
+        (DocumentImpl::recalcStyleSelector):
+
 2002-09-23  Darin Adler  <darin at apple.com>
 
 	WebCore part of fixes for proper layering when drawing subframes.
diff --git a/WebCore/khtml/xml/dom_docimpl.cpp b/WebCore/khtml/xml/dom_docimpl.cpp
index 0b1fae9..98e3760 100644
--- a/WebCore/khtml/xml/dom_docimpl.cpp
+++ b/WebCore/khtml/xml/dom_docimpl.cpp
@@ -1858,9 +1858,9 @@ void DocumentImpl::recalcStyleSelector()
             if (n->id() == ID_LINK) {
                 // <LINK> element
                 HTMLLinkElementImpl* l = static_cast<HTMLLinkElementImpl*>(n);
-                // awful hack to ensure that we ignore the title attribute for non-stylesheets
-                // ### make that nicer!
-                if (!l->sheet() || l->isLoading())
+		if (l->isLoading())
+		  continue;
+		if (!l->sheet())
                     title = QString::null;
             }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list