Changeset 30412 in webkit
- Timestamp:
- Feb 19, 2008, 1:13:19 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r30399 r30412 1 2008-02-19 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Darin Adler. 4 5 - test for <rdar://problem/5637569> CrashTracer: [REGRESSION] 620 crashes in Safari at com.apple.WebCore: WebCore::RenderBox::setStaticY + 15 6 7 * fast/text/wbr-styled.html: Added. 8 * platform/mac-leopard/fast/text/wbr-styled-expected.checksum: Added. 9 * platform/mac-leopard/fast/text/wbr-styled-expected.png: Added. 10 * platform/mac/fast/css-generated-content/wbr-with-before-content-expected.txt: 11 * platform/mac/fast/text/wbr-pre-expected.txt: 12 * platform/mac/fast/text/wbr-styled-expected.txt: Added. 13 1 14 2008-02-18 Dan Bernstein <mitz@apple.com> 2 15 -
trunk/LayoutTests/platform/mac/fast/css-generated-content/wbr-with-before-content-expected.txt
r25970 r30412 11 11 RenderText {#text} at (0,3) size 21x18 12 12 text run at (0,3) width 21: "foo" 13 RenderWordBreak {WBR} at (0,0) size 0x18 14 RenderInline (generated) at (0,0) size 0x18 15 RenderText at (21,3) size 0x18 16 text run at (21,3) width 0: "\x{0}" 13 RenderWordBreak {WBR} at (0,0) size 0x0 17 14 RenderText {#text} at (21,3) size 20x18 18 15 text run at (21,3) width 20: "bar" -
trunk/LayoutTests/platform/mac/fast/text/wbr-pre-expected.txt
r25970 r30412 7 7 RenderText {#text} at (0,0) size 184x15 8 8 text run at (0,0) width 184: "[ONE] This is the first" 9 RenderWordBreak {WBR} at (0,0) size 0x 159 RenderWordBreak {WBR} at (0,0) size 0x0 10 10 RenderText {#text} at (184,0) size 568x45 11 11 text run at (184,0) width 48: " line." -
trunk/WebCore/ChangeLog
r30411 r30412 1 2008-02-19 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Darin Adler. 4 5 - fix <rdar://problem/5637569> CrashTracer: [REGRESSION] 620 crashes in Safari at com.apple.WebCore: WebCore::RenderBox::setStaticY + 15 6 7 Test: fast/text/wbr-styled.html 8 9 Changed RenderWordBreak to inherit from RenderText instead of 10 RenderInline. 11 12 * rendering/RenderBlock.cpp: 13 (WebCore::RenderBlock::calcInlinePrefWidths): 14 * rendering/RenderFlow.h: 15 * rendering/RenderText.cpp: 16 (WebCore::RenderText::renderName): 17 (WebCore::RenderText::isTextFragment): 18 (WebCore::RenderText::isWordBreak): 19 * rendering/RenderText.h: 20 * rendering/RenderWordBreak.cpp: 21 (WebCore::RenderWordBreak::RenderWordBreak): 22 * rendering/RenderWordBreak.h: 23 * rendering/bidi.cpp: 24 (WebCore::RenderBlock::findNextLineBreak): 25 1 26 2008-02-19 Anders Carlsson <andersca@apple.com> 2 27 -
trunk/WebCore/rendering/RenderBlock.cpp
r30067 r30412 3653 3653 3654 3654 child->setPrefWidthsDirty(false); 3655 3656 if (static_cast<RenderFlow*>(child)->isWordBreak()) { 3657 // End a line and start a new line. 3658 m_minPrefWidth = max(inlineMin, m_minPrefWidth); 3659 inlineMin = 0; 3660 } 3661 } 3662 else { 3655 } else { 3663 3656 // Inline replaced elts add in their margins to their min/max values. 3664 3657 int margins = 0; … … 3689 3682 } else 3690 3683 clearPreviousFloat = false; 3691 3684 3692 3685 bool canBreakReplacedElement = !child->isImage() || allowImagesToBreak; 3693 3686 if (canBreakReplacedElement && (autoWrap || oldAutoWrap) || clearPreviousFloat) { … … 3701 3694 inlineMax = 0; 3702 3695 } 3703 3696 3704 3697 // Add in text-indent. This is added in only once. 3705 3698 int ti = 0; … … 3710 3703 childMax+=ti; 3711 3704 } 3712 3705 3713 3706 // Add our width to the max. 3714 3707 inlineMax += childMax; … … 3733 3726 trailingSpaceChild = 0; 3734 3727 } 3735 } 3736 else if (child->isText()) 3737 { 3728 } else if (child->isText()) { 3738 3729 // Case (3). Text. 3739 3730 RenderText* t = static_cast<RenderText *>(child); 3731 3732 if (t->isWordBreak()) { 3733 m_minPrefWidth = max(inlineMin, m_minPrefWidth); 3734 inlineMin = 0; 3735 continue; 3736 } 3740 3737 3741 3738 // Determine if we have a breakable character. Pass in … … 3780 3777 if (!hasBreakableChar) { 3781 3778 inlineMin += childMin; 3782 } 3783 else { 3779 } else { 3784 3780 // We have a breakable character. Now we need to know if 3785 3781 // we start and end with whitespace. … … 3811 3807 m_maxPrefWidth = max(childMax, m_maxPrefWidth); 3812 3808 inlineMax = endMax; 3813 } 3814 else 3809 } else 3815 3810 inlineMax += childMax; 3816 3811 } … … 3830 3825 if (style()->collapseWhiteSpace()) 3831 3826 stripTrailingSpace(inlineMax, inlineMin, trailingSpaceChild); 3832 3827 3833 3828 m_minPrefWidth = max(inlineMin, m_minPrefWidth); 3834 3829 m_maxPrefWidth = max(inlineMax, m_maxPrefWidth); -
trunk/WebCore/rendering/RenderFlow.h
r25754 r30412 103 103 virtual bool hasColumns() const { return m_hasColumns; } 104 104 105 virtual bool isWordBreak() const { ASSERT(isInlineFlow()); return false; }106 107 105 void checkConsistency() const; 108 106 -
trunk/WebCore/rendering/RenderText.cpp
r30342 r30412 77 77 #endif 78 78 79 const char* RenderText::renderName() const 80 { 81 return "RenderText"; 82 } 83 84 bool RenderText::isTextFragment() const 85 { 86 return false; 87 } 88 89 bool RenderText::isWordBreak() const 90 { 91 return false; 92 } 93 79 94 void RenderText::setStyle(RenderStyle* newStyle) 80 95 { -
trunk/WebCore/rendering/RenderText.h
r28298 r30412 38 38 #endif 39 39 40 virtual const char* renderName() const { return "RenderText"; }40 virtual const char* renderName() const; 41 41 42 virtual bool isTextFragment() const { return false; } 42 virtual bool isTextFragment() const; 43 virtual bool isWordBreak() const; 43 44 44 45 virtual PassRefPtr<StringImpl> originalText() const; -
trunk/WebCore/rendering/RenderWordBreak.cpp
r21405 r30412 33 33 34 34 RenderWordBreak::RenderWordBreak(HTMLElement* element) 35 : Render Inline(element)35 : RenderText(element, StringImpl::empty()) 36 36 { 37 37 } … … 47 47 } 48 48 49 bool RenderWordBreak::canHaveChildren() const50 {51 return false;52 49 } 53 54 } -
trunk/WebCore/rendering/RenderWordBreak.h
r21405 r30412 28 28 #define RenderWordBreak_h 29 29 30 #include "Render Inline.h"30 #include "RenderText.h" 31 31 32 32 namespace WebCore { … … 34 34 class HTMLElement; 35 35 36 class RenderWordBreak : public Render Inline{36 class RenderWordBreak : public RenderText { 37 37 public: 38 38 RenderWordBreak(HTMLElement*); … … 40 40 virtual const char* renderName() const; 41 41 virtual bool isWordBreak() const; 42 virtual bool canHaveChildren() const;43 42 }; 44 43 -
trunk/WebCore/rendering/bidi.cpp
r29805 r30412 1507 1507 } 1508 1508 1509 if (static_cast<RenderFlow*>(o)->isWordBreak()) {1510 w += tmpW;1511 tmpW = 0;1512 lBreak.obj = o;1513 lBreak.pos = 0;1514 }1515 1509 tmpW += o->marginLeft() + o->borderLeft() + o->paddingLeft() + 1516 1510 o->marginRight() + o->borderRight() + o->paddingRight(); … … 1548 1542 } else if (o->isText()) { 1549 1543 RenderText* t = static_cast<RenderText*>(o); 1544 1550 1545 int strlen = t->textLength(); 1551 1546 int len = strlen - pos; … … 1569 1564 bool midWordBreak = false; 1570 1565 bool breakAll = o->style()->wordBreak() == BreakAllWordBreak && autoWrap; 1566 1567 if (t->isWordBreak()) { 1568 w += tmpW; 1569 tmpW = 0; 1570 lBreak.obj = o; 1571 lBreak.pos = 0; 1572 ASSERT(!len); 1573 } 1571 1574 1572 1575 while (len) { … … 1800 1803 atStart = false; 1801 1804 } 1802 1805 1803 1806 // IMPORTANT: pos is > length here! 1804 1807 if (!ignoringSpaces) … … 1819 1822 checkForBreak = false; 1820 1823 RenderText* nextText = static_cast<RenderText*>(next); 1821 if (nextText->textLength() != 0) {1824 if (nextText->textLength()) { 1822 1825 UChar c = nextText->characters()[0]; 1823 1826 if (c == ' ' || c == '\t' || (c == '\n' && !shouldPreserveNewline(next))) … … 1826 1829 // keep adding to |tmpW|. Just update and continue. 1827 1830 checkForBreak = true; 1828 } 1831 } else if (nextText->isWordBreak()) 1832 checkForBreak = true; 1829 1833 bool willFitOnLine = (w + tmpW <= width); 1830 1834 bool canPlaceOnLine = willFitOnLine || !autoWrapWasEverTrueOnLine;
Note:
See TracChangeset
for help on using the changeset viewer.