Changeset 31213 in webkit
- Timestamp:
- Mar 21, 2008, 10:17:01 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r31207 r31213 1 2008-03-21 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Adele Peterson. 4 5 - test for http://bugs.webkit.org/show_bug.cgi?id=17966 6 REGRESSION (r31114-r31132): Clearing via br behaves unpredictably 7 8 * fast/block/float/br-with-clear.html: Added. 9 * platform/mac/fast/block/float/br-with-clear-expected.checksum: Added. 10 * platform/mac/fast/block/float/br-with-clear-expected.png: Added. 11 * platform/mac/fast/block/float/br-with-clear-expected.txt: Added. 12 1 13 2008-03-21 Dan Bernstein <mitz@apple.com> 2 14 -
trunk/WebCore/ChangeLog
r31210 r31213 1 2008-03-21 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Adele Peterson. 4 5 - fix http://bugs.webkit.org/show_bug.cgi?id=17966 6 REGRESSION (r31114-r31132): Clearing via br behaves unpredictably 7 8 Test: fast/block/float/br-with-clear.html 9 10 * rendering/bidi.cpp: 11 (WebCore::RenderBlock::layoutInlineChildren): Fixed the logic for the 12 very special case of an all-lines-clean block that ends with a float- 13 clearing <br> by looking for the <br> at the end of the line rather 14 than at its beginning. 15 1 16 2008-03-21 Adam Roben <aroben@apple.com> 2 17 -
trunk/WebCore/rendering/bidi.cpp
r31206 r31213 870 870 BidiIterator end = start.position(); 871 871 872 if (!fullLayout && end.atEnd() && lastRootBox() && lastRootBox()-> firstChild()->object()->isBR() && lastRootBox()->object()->firstChild()->style()->clear() != CNONE)873 newLine(lastRootBox()->object()-> firstChild()->style()->clear());872 if (!fullLayout && end.atEnd() && lastRootBox() && lastRootBox()->lastChild()->object()->isBR() && lastRootBox()->object()->lastChild()->style()->clear() != CNONE) 873 newLine(lastRootBox()->object()->lastChild()->style()->clear()); 874 874 875 875 bool endLineMatched = false;
Note:
See TracChangeset
for help on using the changeset viewer.