[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:31:15 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 8eabd8d08b5378e3ca1e02d41a9e6cabe33d68d5
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 14 21:45:44 2002 +0000

    	Ensure that a rendering object gets built for <fieldset>
    	elements.  Content inside a <fieldset> was being discarded
    	and not rendered.
    
    	This fixes the top frame on blogger comment posting so that
    	it shows up properly.
    
            * khtml/html/html_formimpl.cpp:
            (HTMLFieldSetElementImpl::attach):
            * khtml/html/html_formimpl.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1817 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 8a5be6c..a320522 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,16 @@
+2002-08-14  David Hyatt  <hyatt at apple.com>
+
+	Ensure that a rendering object gets built for <fieldset>
+	elements.  Content inside a <fieldset> was being discarded
+	and not rendered.
+
+	This fixes the top frame on blogger comment posting so that
+	it shows up properly.
+	
+        * khtml/html/html_formimpl.cpp:
+        (HTMLFieldSetElementImpl::attach):
+        * khtml/html/html_formimpl.h:
+
 2002-08-14  Darin Adler  <darin at apple.com>
 
 	Fix the build.
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 8a5be6c..a320522 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,16 @@
+2002-08-14  David Hyatt  <hyatt at apple.com>
+
+	Ensure that a rendering object gets built for <fieldset>
+	elements.  Content inside a <fieldset> was being discarded
+	and not rendered.
+
+	This fixes the top frame on blogger comment posting so that
+	it shows up properly.
+	
+        * khtml/html/html_formimpl.cpp:
+        (HTMLFieldSetElementImpl::attach):
+        * khtml/html/html_formimpl.h:
+
 2002-08-14  Darin Adler  <darin at apple.com>
 
 	Fix the build.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 8a5be6c..a320522 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,16 @@
+2002-08-14  David Hyatt  <hyatt at apple.com>
+
+	Ensure that a rendering object gets built for <fieldset>
+	elements.  Content inside a <fieldset> was being discarded
+	and not rendered.
+
+	This fixes the top frame on blogger comment posting so that
+	it shows up properly.
+	
+        * khtml/html/html_formimpl.cpp:
+        (HTMLFieldSetElementImpl::attach):
+        * khtml/html/html_formimpl.h:
+
 2002-08-14  Darin Adler  <darin at apple.com>
 
 	Fix the build.
diff --git a/WebCore/khtml/html/html_formimpl.cpp b/WebCore/khtml/html/html_formimpl.cpp
index 1442617..5ce1f4c 100644
--- a/WebCore/khtml/html/html_formimpl.cpp
+++ b/WebCore/khtml/html/html_formimpl.cpp
@@ -819,6 +819,15 @@ NodeImpl::Id HTMLFieldSetElementImpl::id() const
     return ID_FIELDSET;
 }
 
+void HTMLFieldSetElementImpl::attach()
+{
+    // Fieldsets need to at least get a render object so that the
+    // children will be rendered. Eventually we need to create a
+    // custom object that can draw the label within the grooved
+    // border. -dwh
+    return HTMLElementImpl::attach();
+}
+
 // -------------------------------------------------------------------------
 
 HTMLInputElementImpl::HTMLInputElementImpl(DocumentPtr *doc, HTMLFormElementImpl *f)
diff --git a/WebCore/khtml/html/html_formimpl.h b/WebCore/khtml/html/html_formimpl.h
index 3de106f..ae57e1c 100644
--- a/WebCore/khtml/html/html_formimpl.h
+++ b/WebCore/khtml/html/html_formimpl.h
@@ -208,6 +208,8 @@ public:
     virtual ~HTMLFieldSetElementImpl();
 
     virtual Id id() const;
+
+    virtual void attach();
 };
 
 // -------------------------------------------------------------------------

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list