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

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:56:19 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 4ec6b689fde01e5ea293ccf371e8a2040d44ccb6
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 31 18:43:03 2002 +0000

    	- fixed 3075803 - yahoo customize layout - delete, ordering of items doesn't work
    
            * khtml/html/html_formimpl.h:
            * khtml/html/html_formimpl.cpp:
            (HTMLSelectElementImpl::recalcStyle): New method to insure the
    	select element updates if the contents of the option subelements
    	are changed.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2521 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 74257f8..4589203 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,13 @@
+2002-10-31  Maciej Stachowiak  <mjs at apple.com>
+
+	- fixed 3075803 - yahoo customize layout - delete, ordering of items doesn't work
+	
+        * khtml/html/html_formimpl.h:
+        * khtml/html/html_formimpl.cpp:
+        (HTMLSelectElementImpl::recalcStyle): New method to insure the
+	select element updates if the contents of the option subelements
+	are changed.
+
 === 30 ===
 
 2002-10-30  Maciej Stachowiak  <mjs at apple.com>
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 74257f8..4589203 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,13 @@
+2002-10-31  Maciej Stachowiak  <mjs at apple.com>
+
+	- fixed 3075803 - yahoo customize layout - delete, ordering of items doesn't work
+	
+        * khtml/html/html_formimpl.h:
+        * khtml/html/html_formimpl.cpp:
+        (HTMLSelectElementImpl::recalcStyle): New method to insure the
+	select element updates if the contents of the option subelements
+	are changed.
+
 === 30 ===
 
 2002-10-30  Maciej Stachowiak  <mjs at apple.com>
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 74257f8..4589203 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2002-10-31  Maciej Stachowiak  <mjs at apple.com>
+
+	- fixed 3075803 - yahoo customize layout - delete, ordering of items doesn't work
+	
+        * khtml/html/html_formimpl.h:
+        * khtml/html/html_formimpl.cpp:
+        (HTMLSelectElementImpl::recalcStyle): New method to insure the
+	select element updates if the contents of the option subelements
+	are changed.
+
 === 30 ===
 
 2002-10-30  Maciej Stachowiak  <mjs at apple.com>
diff --git a/WebCore/khtml/html/html_formimpl.cpp b/WebCore/khtml/html/html_formimpl.cpp
index 969757c..7a6396f 100644
--- a/WebCore/khtml/html/html_formimpl.cpp
+++ b/WebCore/khtml/html/html_formimpl.cpp
@@ -1439,6 +1439,16 @@ NodeImpl::Id HTMLSelectElementImpl::id() const
     return ID_SELECT;
 }
 
+void HTMLSelectElementImpl::recalcStyle( StyleChange ch )
+{
+    if (hasChangedChild() && m_render) {
+        static_cast<khtml::RenderSelect*>(m_render)->setOptionsChanged(true);
+    }
+
+    HTMLGenericFormElementImpl::recalcStyle( ch );
+}
+
+
 DOMString HTMLSelectElementImpl::type() const
 {
     return (m_multiple ? "select-multiple" : "select-one");
diff --git a/WebCore/khtml/html/html_formimpl.h b/WebCore/khtml/html/html_formimpl.h
index ae57e1c..4b75c53 100644
--- a/WebCore/khtml/html/html_formimpl.h
+++ b/WebCore/khtml/html/html_formimpl.h
@@ -345,6 +345,8 @@ public:
 
     DOMString type() const;
 
+    virtual void recalcStyle( StyleChange );
+
     long selectedIndex() const;
     void setSelectedIndex( long index );
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list