| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 #include "core/layout/LayoutAnalyzer.h" | 40 #include "core/layout/LayoutAnalyzer.h" |
| 41 #include "core/layout/LayoutFlowThread.h" | 41 #include "core/layout/LayoutFlowThread.h" |
| 42 #include "core/layout/LayoutMultiColumnFlowThread.h" | 42 #include "core/layout/LayoutMultiColumnFlowThread.h" |
| 43 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h" | 43 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h" |
| 44 #include "core/layout/LayoutPagedFlowThread.h" | 44 #include "core/layout/LayoutPagedFlowThread.h" |
| 45 #include "core/layout/LayoutText.h" | 45 #include "core/layout/LayoutText.h" |
| 46 #include "core/layout/LayoutView.h" | 46 #include "core/layout/LayoutView.h" |
| 47 #include "core/layout/TextAutosizer.h" | 47 #include "core/layout/TextAutosizer.h" |
| 48 #include "core/layout/api/SelectionState.h" | 48 #include "core/layout/api/SelectionState.h" |
| 49 #include "core/layout/line/GlyphOverflow.h" | 49 #include "core/layout/line/GlyphOverflow.h" |
| 50 #include "core/layout/line/InlineTextBox.h" |
| 50 #include "core/layout/line/LineBreaker.h" | 51 #include "core/layout/line/LineBreaker.h" |
| 51 #include "core/layout/line/LineWidth.h" | 52 #include "core/layout/line/LineWidth.h" |
| 52 #include "core/layout/shapes/ShapeOutsideInfo.h" | 53 #include "core/layout/shapes/ShapeOutsideInfo.h" |
| 53 #include "core/paint/BlockFlowPainter.h" | 54 #include "core/paint/BlockFlowPainter.h" |
| 54 #include "core/paint/ClipScope.h" | 55 #include "core/paint/ClipScope.h" |
| 55 #include "core/paint/LayoutObjectDrawingRecorder.h" | 56 #include "core/paint/LayoutObjectDrawingRecorder.h" |
| 56 #include "core/paint/PaintInfo.h" | 57 #include "core/paint/PaintInfo.h" |
| 57 #include "core/paint/PaintLayer.h" | 58 #include "core/paint/PaintLayer.h" |
| 58 #include "platform/RuntimeEnabledFeatures.h" | 59 #include "platform/RuntimeEnabledFeatures.h" |
| 59 #include "platform/geometry/TransformState.h" | 60 #include "platform/geometry/TransformState.h" |
| (...skipping 3789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3849 if (!rect.isEmpty()) | 3850 if (!rect.isEmpty()) |
| 3850 rects.append(rect); | 3851 rects.append(rect); |
| 3851 } | 3852 } |
| 3852 } | 3853 } |
| 3853 | 3854 |
| 3854 if (inlineElementContinuation) | 3855 if (inlineElementContinuation) |
| 3855 inlineElementContinuation->addOutlineRects(rects, additionalOffset + (in
lineElementContinuation->containingBlock()->location() - location()), includeBlo
ckOverflows); | 3856 inlineElementContinuation->addOutlineRects(rects, additionalOffset + (in
lineElementContinuation->containingBlock()->location() - location()), includeBlo
ckOverflows); |
| 3856 } | 3857 } |
| 3857 | 3858 |
| 3858 } // namespace blink | 3859 } // namespace blink |
| OLD | NEW |