OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2007 David Smith (catfish.man@gmail.com) | 4 * (C) 2007 David Smith (catfish.man@gmail.com) |
5 * Copyright (C) 2003-2013 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003-2013 Apple Inc. All rights reserved. |
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
7 * Copyright (C) 2013 Google Inc. All rights reserved. | 7 * Copyright (C) 2013 Google Inc. All rights reserved. |
8 * | 8 * |
9 * Redistribution and use in source and binary forms, with or without | 9 * Redistribution and use in source and binary forms, with or without |
10 * modification, are permitted provided that the following conditions are | 10 * modification, are permitted provided that the following conditions are |
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
579 RootInlineBox* determineStartPosition(LineLayoutState&, InlineBidiResolver&)
; | 579 RootInlineBox* determineStartPosition(LineLayoutState&, InlineBidiResolver&)
; |
580 void determineEndPosition(LineLayoutState&, RootInlineBox* startBox, InlineI
terator& cleanLineStart, BidiStatus& cleanLineBidiStatus); | 580 void determineEndPosition(LineLayoutState&, RootInlineBox* startBox, InlineI
terator& cleanLineStart, BidiStatus& cleanLineBidiStatus); |
581 bool lineBoxHasBRWithClearance(RootInlineBox*); | 581 bool lineBoxHasBRWithClearance(RootInlineBox*); |
582 bool checkPaginationAndFloatsAtEndLine(LineLayoutState&); | 582 bool checkPaginationAndFloatsAtEndLine(LineLayoutState&); |
583 bool matchedEndLine(LineLayoutState&, const InlineBidiResolver&, const Inlin
eIterator& endLineStart, const BidiStatus& endLineStatus); | 583 bool matchedEndLine(LineLayoutState&, const InlineBidiResolver&, const Inlin
eIterator& endLineStart, const BidiStatus& endLineStatus); |
584 void deleteEllipsisLineBoxes(); | 584 void deleteEllipsisLineBoxes(); |
585 void checkLinesForTextOverflow(); | 585 void checkLinesForTextOverflow(); |
586 // Positions new floats and also adjust all floats encountered on the line i
f any of them | 586 // Positions new floats and also adjust all floats encountered on the line i
f any of them |
587 // have to move to the next page/column. | 587 // have to move to the next page/column. |
588 void positionDialog(); | 588 void positionDialog(); |
| 589 void invalidateDisplayItemClientsOfFirstLine() final; |
589 | 590 |
590 // END METHODS DEFINED IN LayoutBlockFlowLine | 591 // END METHODS DEFINED IN LayoutBlockFlowLine |
591 | 592 |
592 }; | 593 }; |
593 | 594 |
594 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlockFlow, isLayoutBlockFlow()); | 595 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlockFlow, isLayoutBlockFlow()); |
595 | 596 |
596 } // namespace blink | 597 } // namespace blink |
597 | 598 |
598 #endif // LayoutBlockFlow_h | 599 #endif // LayoutBlockFlow_h |
OLD | NEW |