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

Unified Diff: third_party/WebKit/Source/core/layout/line/InlineBox.h

Issue 1415493008: ASSERTION FAILED: !m_overflow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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: third_party/WebKit/Source/core/layout/line/InlineBox.h
diff --git a/third_party/WebKit/Source/core/layout/line/InlineBox.h b/third_party/WebKit/Source/core/layout/line/InlineBox.h
index dedadf41a79901c3a6e0a5fbc0c7bcdc163b3345..8e2cdd62f618efcf011d74d2a38d306675229a92 100644
--- a/third_party/WebKit/Source/core/layout/line/InlineBox.h
+++ b/third_party/WebKit/Source/core/layout/line/InlineBox.h
@@ -351,6 +351,14 @@ public:
ADD_BOOLEAN_BITFIELD(endsWithBreak, EndsWithBreak); // Whether the line ends with a <br>.
// shared between RootInlineBox and InlineTextBox
ADD_BOOLEAN_BITFIELD(hasSelectedChildrenOrCanHaveLeadingExpansion, HasSelectedChildrenOrCanHaveLeadingExpansion);
+
+ // This boolean tracks whether we know this box to have no overflow.
leviw_travelin_and_unemployed 2015/11/10 20:23:22 "whether we know this box has no overflow"
Julien - ping for review 2015/11/10 23:52:47 Changed.
+ //
+ // Note that this boolean shouldn't be set if we could have overflow.
leviw_travelin_and_unemployed 2015/11/10 20:23:22 I don't feel that the middle 2 lines of this comme
Julien - ping for review 2015/11/10 23:52:47 I strongly think they are (or at least something s
leviw_travelin_and_unemployed 2015/11/12 22:57:51 Can you explain to me how "tracks whether we know
Julien - ping for review 2015/11/13 00:31:32 Fair point, amended the comment to avoid this dupl
+ // As such, it's a conservative tracking of the absence of overflow.
+ //
+ // For whether we have overflow, callers should use m_overflow on
+ // InlineFlowBox.
ADD_BOOLEAN_BITFIELD(knownToHaveNoOverflow, KnownToHaveNoOverflow);
ADD_BOOLEAN_BITFIELD(hasEllipsisBoxOrHyphen, HasEllipsisBoxOrHyphen);
// for InlineTextBox

Powered by Google App Engine
This is Rietveld 408576698