Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1056)

Unified Diff: Source/core/layout/line/BreakingContextInlineHeaders.h

Issue 1156143002: *** NOT FOR LANDING *** Text nodes should only inherit inheritable properties. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Some tests need to be rebaselined. Text nodes can no longer have z-index. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/layout/line/BreakingContextInlineHeaders.h
diff --git a/Source/core/layout/line/BreakingContextInlineHeaders.h b/Source/core/layout/line/BreakingContextInlineHeaders.h
index e9f85ff4dec837d772ce4ec8f605ec029fe2ffe4..704ea7660a4810e8921d51f437e1978e6c2e3295 100644
--- a/Source/core/layout/line/BreakingContextInlineHeaders.h
+++ b/Source/core/layout/line/BreakingContextInlineHeaders.h
@@ -511,7 +511,7 @@ ALWAYS_INLINE TextDirection textDirectionFromUnicode(WTF::Unicode::Direction dir
ALWAYS_INLINE float textWidth(LayoutText* text, unsigned from, unsigned len, const Font& font, float xPos, bool collapseWhiteSpace, HashSet<const SimpleFontData*>* fallbackFonts = 0)
{
GlyphOverflow glyphOverflow;
- if ((!from && len == text->textLength()) || text->style()->hasTextCombine())
+ if ((!from && len == text->textLength()) || text->isCombineText())
return text->width(from, len, font, xPos, text->style()->direction(), fallbackFonts, &glyphOverflow);
TextRun run = constructTextRun(text, font, text, from, len, text->styleRef());
@@ -553,7 +553,7 @@ inline bool BreakingContext::handleText(WordMeasurements& wordMeasurements, bool
bool midWordBreak = false;
bool breakAll = m_currentStyle->wordBreak() == BreakAllWordBreak && m_autoWrap;
bool keepAll = m_currentStyle->wordBreak() == KeepAllWordBreak && m_autoWrap;
- bool prohibitBreakInside = m_currentStyle->hasTextCombine() && layoutText->isCombineText() && toLayoutTextCombine(layoutText)->isCombined();
+ bool prohibitBreakInside = layoutText->isCombineText() && toLayoutTextCombine(layoutText)->isCombined();
float hyphenWidth = 0;
if (isSVGText) {

Powered by Google App Engine
This is Rietveld 408576698