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

Unified Diff: Source/core/layout/line/BreakingContext.cpp

Issue 1164933006: Create LineLayout api (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase + nits Created 5 years, 5 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
« no previous file with comments | « Source/core/layout/api/LineLayoutText.h ('k') | Source/core/layout/line/BreakingContextInlineHeaders.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/line/BreakingContext.cpp
diff --git a/Source/core/layout/line/BreakingContext.cpp b/Source/core/layout/line/BreakingContext.cpp
index 44515c8c43415f331e221fab556a1d507cff66bb..f4f43e749d533ecf444935c811c6ba05502a99da 100644
--- a/Source/core/layout/line/BreakingContext.cpp
+++ b/Source/core/layout/line/BreakingContext.cpp
@@ -31,7 +31,7 @@ InlineIterator BreakingContext::handleEndOfLine()
if (m_lineBreak == m_resolver.position() && (!m_lineBreak.object() || !m_lineBreak.object()->isBR())) {
// we just add as much as possible
if (m_blockStyle->whiteSpace() == PRE && !m_current.offset()) {
- m_lineBreak.moveTo(m_lastObject, m_lastObject->isText() ? m_lastObject->length() : 0);
+ m_lineBreak.moveTo(LineLayoutItem(m_lastObject), m_lastObject->isText() ? m_lastObject->length() : 0);
} else if (m_lineBreak.object()) {
// Don't ever break in the middle of a word if we can help it.
// There's no room at all. We just have to be on this line,
« no previous file with comments | « Source/core/layout/api/LineLayoutText.h ('k') | Source/core/layout/line/BreakingContextInlineHeaders.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698