| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ight reserved. | 3 * Copyright (C) 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ight reserved. |
| 4 * Copyright (C) 2010 Google Inc. All rights reserved. | 4 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "core/rendering/RenderListMarker.h" | 34 #include "core/rendering/RenderListMarker.h" |
| 35 #include "core/rendering/RenderRegion.h" | 35 #include "core/rendering/RenderRegion.h" |
| 36 #include "core/rendering/RenderRubyRun.h" | 36 #include "core/rendering/RenderRubyRun.h" |
| 37 #include "core/rendering/RenderView.h" | 37 #include "core/rendering/RenderView.h" |
| 38 #include "core/rendering/TrailingFloatsRootInlineBox.h" | 38 #include "core/rendering/TrailingFloatsRootInlineBox.h" |
| 39 #include "core/rendering/VerticalPositionCache.h" | 39 #include "core/rendering/VerticalPositionCache.h" |
| 40 #include "core/rendering/break_lines.h" | 40 #include "core/rendering/break_lines.h" |
| 41 #include "core/rendering/shapes/ShapeInsideInfo.h" | 41 #include "core/rendering/shapes/ShapeInsideInfo.h" |
| 42 #include "core/rendering/svg/RenderSVGInlineText.h" | 42 #include "core/rendering/svg/RenderSVGInlineText.h" |
| 43 #include "core/rendering/svg/SVGRootInlineBox.h" | 43 #include "core/rendering/svg/SVGRootInlineBox.h" |
| 44 #include <wtf/RefCountedLeakCounter.h> | 44 #include "wtf/RefCountedLeakCounter.h" |
| 45 #include <wtf/StdLibExtras.h> | 45 #include "wtf/StdLibExtras.h" |
| 46 #include <wtf/unicode/CharacterNames.h> | 46 #include "wtf/Vector.h" |
| 47 #include <wtf/Vector.h> | 47 #include "wtf/unicode/CharacterNames.h" |
| 48 | 48 |
| 49 using namespace std; | 49 using namespace std; |
| 50 using namespace WTF; | 50 using namespace WTF; |
| 51 using namespace Unicode; | 51 using namespace Unicode; |
| 52 | 52 |
| 53 namespace WebCore { | 53 namespace WebCore { |
| 54 | 54 |
| 55 // We don't let our line box tree for a single line get any deeper than this. | 55 // We don't let our line box tree for a single line get any deeper than this. |
| 56 const unsigned cMaxLineDepth = 200; | 56 const unsigned cMaxLineDepth = 200; |
| 57 | 57 |
| (...skipping 3373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3431 lineGridBox->alignBoxesInBlockDirection(logicalHeight(), textBoxDataMap, ver
ticalPositionCache); | 3431 lineGridBox->alignBoxesInBlockDirection(logicalHeight(), textBoxDataMap, ver
ticalPositionCache); |
| 3432 | 3432 |
| 3433 setLineGridBox(lineGridBox); | 3433 setLineGridBox(lineGridBox); |
| 3434 | 3434 |
| 3435 // FIXME: If any of the characteristics of the box change compared to the ol
d one, then we need to do a deep dirtying | 3435 // FIXME: If any of the characteristics of the box change compared to the ol
d one, then we need to do a deep dirtying |
| 3436 // (similar to what happens when the page height changes). Ideally, though,
we only do this if someone is actually snapping | 3436 // (similar to what happens when the page height changes). Ideally, though,
we only do this if someone is actually snapping |
| 3437 // to this grid. | 3437 // to this grid. |
| 3438 } | 3438 } |
| 3439 | 3439 |
| 3440 } | 3440 } |
| OLD | NEW |