[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 08:12:55 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 29dc20e8afebb0bcba5f570b5af88368038d4b83
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Nov 17 23:17:59 2003 +0000

            Reviewed by Dave.
    
    	- fixed 3397494 - FileMaker: Setting option object text fails if created without text
    
            * khtml/html/html_formimpl.cpp:
            (HTMLOptionElementImpl::childrenChanged): Update the select element.
    	This ends up getting called when you add a text node to an option that
    	didn't used to have one.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5542 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 42dbf26..c72d196 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,14 @@
+2003-11-17  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Dave.
+
+	- fixed 3397494 - FileMaker: Setting option object text fails if created without text
+	
+        * khtml/html/html_formimpl.cpp:
+        (HTMLOptionElementImpl::childrenChanged): Update the select element.
+	This ends up getting called when you add a text node to an option that
+	didn't used to have one.
+
 2003-11-17  Ken Kocienda  <kocienda at apple.com>
 
         Reviewed by Maciej
diff --git a/WebCore/khtml/html/html_formimpl.cpp b/WebCore/khtml/html/html_formimpl.cpp
index b5c221b..ff7b82e 100644
--- a/WebCore/khtml/html/html_formimpl.cpp
+++ b/WebCore/khtml/html/html_formimpl.cpp
@@ -2608,6 +2608,13 @@ void HTMLOptionElementImpl::setSelected(bool _selected)
         select->notifyOptionSelected(this,_selected);
 }
 
+void HTMLOptionElementImpl::childrenChanged()
+{
+   HTMLSelectElementImpl *select = getSelect();
+   if (select)
+       select->childrenChanged();
+}
+
 HTMLSelectElementImpl *HTMLOptionElementImpl::getSelect() const
 {
     NodeImpl *select = parentNode();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list