Bug 12608

Summary: Incorrect min. width calculation of a series of floats with clear:both and white-space:nowrap
Product: WebKit Reporter: mitz
Component: Layout and RenderingAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal Keywords: HasReduction
Priority: P2    
Version: 420+   
Hardware: Mac   
OS: OS X 10.4   
URL: http://www.springerlink.com/content/7vnpyjg8xubemavy/
Attachments:
Description Flags
Reduction
none
Patch including change log and layout test
none
Patch including change log and layout test mjs: review+

Description mitz 2007-02-05 02:53:16 PST
Reduction and patch forthcoming.
Comment 1 mitz 2007-02-05 02:59:03 PST
Created attachment 12930 [details]
Reduction
Comment 2 mitz 2007-02-05 03:06:13 PST
Created attachment 12931 [details]
Patch including change log and layout test

No layout test regressions
Comment 3 mitz 2007-02-06 00:00:19 PST
Created attachment 12961 [details]
Patch including change log and layout test

Changed
+                if (!growForPrevious && (autoWrap || oldAutoWrap || clearPreviousFloat)) {
to
+                if (!growForPrevious && (autoWrap || oldAutoWrap) || clearPreviousFloat) {
since the crazy quirk does not apply here.
Comment 4 Maciej Stachowiak 2007-02-06 23:00:05 PST
Comment on attachment 12961 [details]
Patch including change log and layout test

r=me
Comment 5 Mark Rowe (bdash) 2007-02-07 21:22:56 PST
Landed in r19493.