| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the render object implementation for KHTML. | 2 * This file is part of the render object implementation for KHTML. |
| 3 * | 3 * |
| 4 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 4 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 5 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 5 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 6 * Copyright (C) 2003 Apple Computer, Inc. | 6 * Copyright (C) 2003 Apple Computer, Inc. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #include "config.h" | 25 #include "config.h" |
| 26 #include "core/rendering/RenderDeprecatedFlexibleBox.h" | 26 #include "core/rendering/RenderDeprecatedFlexibleBox.h" |
| 27 | 27 |
| 28 #include "core/page/UseCounter.h" | 28 #include "core/page/UseCounter.h" |
| 29 #include "core/platform/graphics/Font.h" | 29 #include "core/platform/graphics/Font.h" |
| 30 #include "core/rendering/LayoutRepainter.h" | 30 #include "core/rendering/LayoutRepainter.h" |
| 31 #include "core/rendering/RenderLayer.h" | 31 #include "core/rendering/RenderLayer.h" |
| 32 #include "core/rendering/RenderView.h" | 32 #include "core/rendering/RenderView.h" |
| 33 #include <wtf/StdLibExtras.h> | 33 #include "wtf/StdLibExtras.h" |
| 34 #include <wtf/unicode/CharacterNames.h> | 34 #include "wtf/unicode/CharacterNames.h" |
| 35 | 35 |
| 36 using namespace std; | 36 using namespace std; |
| 37 | 37 |
| 38 namespace WebCore { | 38 namespace WebCore { |
| 39 | 39 |
| 40 class FlexBoxIterator { | 40 class FlexBoxIterator { |
| 41 public: | 41 public: |
| 42 FlexBoxIterator(RenderDeprecatedFlexibleBox* parent) | 42 FlexBoxIterator(RenderDeprecatedFlexibleBox* parent) |
| 43 : m_box(parent) | 43 : m_box(parent) |
| 44 , m_largestOrdinal(1) | 44 , m_largestOrdinal(1) |
| (...skipping 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1099 if (isPseudoElement()) | 1099 if (isPseudoElement()) |
| 1100 return "RenderDeprecatedFlexibleBox (generated)"; | 1100 return "RenderDeprecatedFlexibleBox (generated)"; |
| 1101 if (isAnonymous()) | 1101 if (isAnonymous()) |
| 1102 return "RenderDeprecatedFlexibleBox (generated)"; | 1102 return "RenderDeprecatedFlexibleBox (generated)"; |
| 1103 if (isRelPositioned()) | 1103 if (isRelPositioned()) |
| 1104 return "RenderDeprecatedFlexibleBox (relative positioned)"; | 1104 return "RenderDeprecatedFlexibleBox (relative positioned)"; |
| 1105 return "RenderDeprecatedFlexibleBox"; | 1105 return "RenderDeprecatedFlexibleBox"; |
| 1106 } | 1106 } |
| 1107 | 1107 |
| 1108 } // namespace WebCore | 1108 } // namespace WebCore |
| OLD | NEW |