| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/unicode/CharacterNames.h> |
| 47 #include <wtf/Vector.h> | 47 #include <wtf/Vector.h> |
| 48 | 48 |
| 49 #if ENABLE(CSS_EXCLUSIONS) | 49 #if ENABLE(CSS_EXCLUSIONS) |
| 50 #include "ExclusionShapeInsideInfo.h" | 50 #include "ExclusionShapeInsideInfo.h" |
| 51 #endif | 51 #endif |
| 52 | 52 |
| 53 #if ENABLE(SVG) | 53 #if ENABLE(SVG) |
| 54 #include "RenderSVGInlineText.h" | 54 #include "core/rendering/svg/RenderSVGInlineText.h" |
| 55 #include "SVGRootInlineBox.h" | 55 #include "core/rendering/svg/SVGRootInlineBox.h" |
| 56 #endif | 56 #endif |
| 57 | 57 |
| 58 using namespace std; | 58 using namespace std; |
| 59 using namespace WTF; | 59 using namespace WTF; |
| 60 using namespace Unicode; | 60 using namespace Unicode; |
| 61 | 61 |
| 62 namespace WebCore { | 62 namespace WebCore { |
| 63 | 63 |
| 64 // We don't let our line box tree for a single line get any deeper than this. | 64 // We don't let our line box tree for a single line get any deeper than this. |
| 65 const unsigned cMaxLineDepth = 200; | 65 const unsigned cMaxLineDepth = 200; |
| (...skipping 3348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3414 lineGridBox->alignBoxesInBlockDirection(logicalHeight(), textBoxDataMap, ver
ticalPositionCache); | 3414 lineGridBox->alignBoxesInBlockDirection(logicalHeight(), textBoxDataMap, ver
ticalPositionCache); |
| 3415 | 3415 |
| 3416 setLineGridBox(lineGridBox); | 3416 setLineGridBox(lineGridBox); |
| 3417 | 3417 |
| 3418 // FIXME: If any of the characteristics of the box change compared to the ol
d one, then we need to do a deep dirtying | 3418 // FIXME: If any of the characteristics of the box change compared to the ol
d one, then we need to do a deep dirtying |
| 3419 // (similar to what happens when the page height changes). Ideally, though,
we only do this if someone is actually snapping | 3419 // (similar to what happens when the page height changes). Ideally, though,
we only do this if someone is actually snapping |
| 3420 // to this grid. | 3420 // to this grid. |
| 3421 } | 3421 } |
| 3422 | 3422 |
| 3423 } | 3423 } |
| OLD | NEW |