[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 07:24:40 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 15b83df0e1adcbe0da62893ca552dfd802cf8ea5
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Feb 17 07:39:30 2003 +0000

    	Fix "Almost Strict" mode to not match @konq-quirks.
    
            Reviewed by kocienda
    
            * ChangeLog:
            * khtml/xml/dom_docimpl.cpp:
            (DocumentImpl::DocumentImpl):
            (DocumentImpl::recalcStyleSelector):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3651 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index bf52122..5846e9c 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,33 @@
+2003-02-16  David Hyatt  <hyatt at apple.com>
+
+	Fix "Almost Strict" mode to not match @konq-quirks.
+	
+        Reviewed by kocienda
+
+        * ChangeLog:
+        * khtml/xml/dom_docimpl.cpp:
+        (DocumentImpl::DocumentImpl):
+        (DocumentImpl::recalcStyleSelector):
+
+2003-02-16  David Hyatt  <hyatt at apple.com>
+
+	Fix to make table cells within the same table use a shared style 
+	decl object (owned by the table).  This stops every cell in a table
+	from having the exact same values copied on the cell itself.
+	
+        Reviewed by NOBODY (OOPS!).
+
+        * khtml/css/cssstyleselector.cpp:
+        * khtml/css/cssstyleselector.h:
+        * khtml/html/html_tableimpl.cpp:
+        (HTMLTableElementImpl::HTMLTableElementImpl):
+        (HTMLTableElementImpl::~HTMLTableElementImpl):
+        (HTMLTableElementImpl::createSharedCellDecls):
+        (HTMLTableCellElementImpl::getAdditionalStyleDecls):
+        (HTMLTableCellElementImpl::attach):
+        * khtml/html/html_tableimpl.h:
+        * khtml/xml/dom_elementimpl.h:
+
 2003-02-14  David Hyatt  <hyatt at apple.com>
 
 	Make the inline box model live.  Borders/backgrounds and text
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index bf52122..5846e9c 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,33 @@
+2003-02-16  David Hyatt  <hyatt at apple.com>
+
+	Fix "Almost Strict" mode to not match @konq-quirks.
+	
+        Reviewed by kocienda
+
+        * ChangeLog:
+        * khtml/xml/dom_docimpl.cpp:
+        (DocumentImpl::DocumentImpl):
+        (DocumentImpl::recalcStyleSelector):
+
+2003-02-16  David Hyatt  <hyatt at apple.com>
+
+	Fix to make table cells within the same table use a shared style 
+	decl object (owned by the table).  This stops every cell in a table
+	from having the exact same values copied on the cell itself.
+	
+        Reviewed by NOBODY (OOPS!).
+
+        * khtml/css/cssstyleselector.cpp:
+        * khtml/css/cssstyleselector.h:
+        * khtml/html/html_tableimpl.cpp:
+        (HTMLTableElementImpl::HTMLTableElementImpl):
+        (HTMLTableElementImpl::~HTMLTableElementImpl):
+        (HTMLTableElementImpl::createSharedCellDecls):
+        (HTMLTableCellElementImpl::getAdditionalStyleDecls):
+        (HTMLTableCellElementImpl::attach):
+        * khtml/html/html_tableimpl.h:
+        * khtml/xml/dom_elementimpl.h:
+
 2003-02-14  David Hyatt  <hyatt at apple.com>
 
 	Make the inline box model live.  Borders/backgrounds and text
diff --git a/WebCore/khtml/xml/dom_docimpl.cpp b/WebCore/khtml/xml/dom_docimpl.cpp
index 450a2d6..ddc8dc1 100644
--- a/WebCore/khtml/xml/dom_docimpl.cpp
+++ b/WebCore/khtml/xml/dom_docimpl.cpp
@@ -294,7 +294,7 @@ DocumentImpl::DocumentImpl(DOMImplementationImpl *_implementation, KHTMLView *v)
     m_usesDescendantRules = false;
     
     m_styleSelector = new CSSStyleSelector( this, m_usersheet, m_styleSheets, m_url,
-                                            pMode == Strict );
+                                            !inQuirksMode() );
     m_windowEventListeners.setAutoDelete(true);
     m_pendingStylesheets = 0;
 }
@@ -1984,7 +1984,7 @@ void DocumentImpl::recalcStyleSelector()
     if ( m_view && m_view->mediaType() == "print" )
 	usersheet += m_printSheet;
     m_styleSelector = new CSSStyleSelector( this, usersheet, m_styleSheets, m_url,
-                                            pMode == Strict );
+                                            !inQuirksMode() );
 
     m_styleSelectorDirty = false;
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list