[webkit-changes] cvs commit: WebCore/khtml/rendering render_form.cpp
Adele
adele at opensource.apple.com
Tue Jul 12 10:36:02 PDT 2005
adele 05/07/12 10:36:02
Modified: . Tag: Safari-2-0-branch ChangeLog
khtml/rendering Tag: Safari-2-0-branch render_form.cpp
Log:
Merged fix from TOT to Safari-2-0-branch
<rdar://problem/4164939> Selects wrapped by Span or Label elements do not resize when options are added via javascript
2005-06-17 Vicki Murley <vicki at apple.com>
Reviewed by Maciej.
Test cases added: None, since this test requires manual interaction.
- fixed <rdar://problem/4086793> Selects wrapped by Span or Label elements
do not resize when options are added via javascript
* khtml/rendering/render_form.cpp:
(RenderSelect::layout): Remove call setting setNeedsLayout to true. setNeedsLayout
is already true at this point, and this additional call has the negative effect of
marking m_normalChildNeedsLayout on the element's parent, which keeps layout from
propagating all the way up to the root later on.
Revision Changes Path
No revision
No revision
1.4104.2.47 +21 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.4104.2.46
retrieving revision 1.4104.2.47
diff -u -r1.4104.2.46 -r1.4104.2.47
--- ChangeLog 12 Jul 2005 16:32:03 -0000 1.4104.2.46
+++ ChangeLog 12 Jul 2005 17:35:52 -0000 1.4104.2.47
@@ -1,6 +1,27 @@
2005-07-12 Adele Peterson <adele at apple.com>
Merged fix from TOT to Safari-2-0-branch
+ <rdar://problem/4164939> Selects wrapped by Span or Label elements do not resize when options are added via javascript
+
+ 2005-06-17 Vicki Murley <vicki at apple.com>
+
+ Reviewed by Maciej.
+
+ Test cases added: None, since this test requires manual interaction.
+
+ - fixed <rdar://problem/4086793> Selects wrapped by Span or Label elements
+ do not resize when options are added via javascript
+
+ * khtml/rendering/render_form.cpp:
+ (RenderSelect::layout): Remove call setting setNeedsLayout to true. setNeedsLayout
+ is already true at this point, and this additional call has the negative effect of
+ marking m_normalChildNeedsLayout on the element's parent, which keeps layout from
+ propagating all the way up to the root later on.
+
+
+2005-07-12 Adele Peterson <adele at apple.com>
+
+ Merged fix from TOT to Safari-2-0-branch
<rdar://problem/4164931> crash in DOM::ElementImpl::setAttribute at www.nitto-kohki.co.jp
2005-05-11 Adele Peterson <adele at apple.com>
No revision
No revision
1.102.8.1 +0 -2 WebCore/khtml/rendering/render_form.cpp
Index: render_form.cpp
===================================================================
RCS file: /cvs/root/WebCore/khtml/rendering/render_form.cpp,v
retrieving revision 1.102
retrieving revision 1.102.8.1
diff -u -r1.102 -r1.102.8.1
--- render_form.cpp 19 Mar 2005 00:34:07 -0000 1.102
+++ render_form.cpp 12 Jul 2005 17:36:01 -0000 1.102.8.1
@@ -1275,8 +1275,6 @@
setIntrinsicHeight( s.height() );
}
- /// uuh, ignore the following line..
- setNeedsLayout(true);
RenderFormElement::layout();
// and now disable the widget in case there is no <option> given
More information about the webkit-changes
mailing list