OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 15 matching lines...) Expand all Loading... |
26 #include "core/layout/LayoutBlock.h" | 26 #include "core/layout/LayoutBlock.h" |
27 #include "core/layout/LayoutInline.h" | 27 #include "core/layout/LayoutInline.h" |
28 #include "core/layout/LayoutListMarker.h" | 28 #include "core/layout/LayoutListMarker.h" |
29 #include "core/layout/LayoutObjectInlines.h" | 29 #include "core/layout/LayoutObjectInlines.h" |
30 #include "core/layout/LayoutRubyBase.h" | 30 #include "core/layout/LayoutRubyBase.h" |
31 #include "core/layout/LayoutRubyRun.h" | 31 #include "core/layout/LayoutRubyRun.h" |
32 #include "core/layout/LayoutRubyText.h" | 32 #include "core/layout/LayoutRubyText.h" |
33 #include "core/layout/LayoutView.h" | 33 #include "core/layout/LayoutView.h" |
34 #include "core/layout/line/InlineTextBox.h" | 34 #include "core/layout/line/InlineTextBox.h" |
35 #include "core/layout/line/RootInlineBox.h" | 35 #include "core/layout/line/RootInlineBox.h" |
36 #include "core/layout/style/ShadowList.h" | 36 #include "core/style/ShadowList.h" |
37 #include "core/paint/BoxPainter.h" | 37 #include "core/paint/BoxPainter.h" |
38 #include "core/paint/InlineFlowBoxPainter.h" | 38 #include "core/paint/InlineFlowBoxPainter.h" |
39 #include "platform/fonts/Font.h" | 39 #include "platform/fonts/Font.h" |
40 #include "platform/graphics/GraphicsContextStateSaver.h" | 40 #include "platform/graphics/GraphicsContextStateSaver.h" |
41 | 41 |
42 #include <math.h> | 42 #include <math.h> |
43 | 43 |
44 namespace blink { | 44 namespace blink { |
45 | 45 |
46 struct SameSizeAsInlineFlowBox : public InlineBox { | 46 struct SameSizeAsInlineFlowBox : public InlineBox { |
(...skipping 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1299 ASSERT(child->prevOnLine() == prev); | 1299 ASSERT(child->prevOnLine() == prev); |
1300 prev = child; | 1300 prev = child; |
1301 } | 1301 } |
1302 ASSERT(prev == m_lastChild); | 1302 ASSERT(prev == m_lastChild); |
1303 #endif | 1303 #endif |
1304 } | 1304 } |
1305 | 1305 |
1306 #endif | 1306 #endif |
1307 | 1307 |
1308 } // namespace blink | 1308 } // namespace blink |
OLD | NEW |