| Index: Source/core/layout/line/LineLayoutState.h
|
| diff --git a/Source/core/layout/line/LineLayoutState.h b/Source/core/layout/line/LineLayoutState.h
|
| index 7ac7e8c96fd80a23a4d40c1a16d52765ecfdf89b..d112820274fc269585a13f39e843bfa8b48afaa5 100644
|
| --- a/Source/core/layout/line/LineLayoutState.h
|
| +++ b/Source/core/layout/line/LineLayoutState.h
|
| @@ -42,6 +42,7 @@ public:
|
| , m_checkForFloatsFromLastLine(false)
|
| , m_hasInlineChild(false)
|
| , m_isFullLayout(fullLayout)
|
| + , m_containsBRWithClear(false)
|
| , m_paintInvalidationLogicalTop(paintInvalidationLogicalTop)
|
| , m_paintInvalidationLogicalBottom(paintInvalidationLogicalBottom)
|
| , m_adjustedLogicalLineTop(0)
|
| @@ -76,6 +77,9 @@ public:
|
| bool hasInlineChild() const { return m_hasInlineChild; }
|
| void setHasInlineChild(bool hasInlineChild) { m_hasInlineChild = hasInlineChild; }
|
|
|
| + bool containsBRWithClear() const { return m_containsBRWithClear; }
|
| + void setContainsBRWithClear(bool containsBRWithClear) { m_containsBRWithClear = containsBRWithClear; }
|
| +
|
| LineInfo& lineInfo() { return m_lineInfo; }
|
| const LineInfo& lineInfo() const { return m_lineInfo; }
|
|
|
| @@ -113,6 +117,8 @@ private:
|
|
|
| bool m_isFullLayout;
|
|
|
| + bool m_containsBRWithClear;
|
| +
|
| // FIXME: Should this be a range object instead of two ints?
|
| LayoutUnit& m_paintInvalidationLogicalTop;
|
| LayoutUnit& m_paintInvalidationLogicalBottom;
|
|
|