| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) | 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv
ed. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv
ed. |
| 7 * Copyright (C) 2009 Google Inc. All rights reserved. | 7 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 9 * | 9 * |
| 10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 #include "core/platform/graphics/FloatQuad.h" | 74 #include "core/platform/graphics/FloatQuad.h" |
| 75 #include "core/platform/graphics/GraphicsContext.h" | 75 #include "core/platform/graphics/GraphicsContext.h" |
| 76 #include "core/platform/graphics/transforms/TransformState.h" | 76 #include "core/platform/graphics/transforms/TransformState.h" |
| 77 #include "core/rendering/style/ContentData.h" | 77 #include "core/rendering/style/ContentData.h" |
| 78 #include "core/rendering/style/CursorList.h" | 78 #include "core/rendering/style/CursorList.h" |
| 79 #include "htmlediting.h" | 79 #include "htmlediting.h" |
| 80 #include <wtf/RefCountedLeakCounter.h> | 80 #include <wtf/RefCountedLeakCounter.h> |
| 81 #include <wtf/UnusedParam.h> | 81 #include <wtf/UnusedParam.h> |
| 82 | 82 |
| 83 #if ENABLE(SVG) | 83 #if ENABLE(SVG) |
| 84 #include "RenderSVGResourceContainer.h" | 84 #include "core/rendering/svg/RenderSVGResourceContainer.h" |
| 85 #include "SVGRenderSupport.h" | 85 #include "core/rendering/svg/SVGRenderSupport.h" |
| 86 #endif | 86 #endif |
| 87 | 87 |
| 88 using namespace std; | 88 using namespace std; |
| 89 | 89 |
| 90 namespace WebCore { | 90 namespace WebCore { |
| 91 | 91 |
| 92 using namespace HTMLNames; | 92 using namespace HTMLNames; |
| 93 | 93 |
| 94 #ifndef NDEBUG | 94 #ifndef NDEBUG |
| 95 static void* baseOfRenderObjectBeingDeleted; | 95 static void* baseOfRenderObjectBeingDeleted; |
| (...skipping 3070 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3166 { | 3166 { |
| 3167 if (object1) { | 3167 if (object1) { |
| 3168 const WebCore::RenderObject* root = object1; | 3168 const WebCore::RenderObject* root = object1; |
| 3169 while (root->parent()) | 3169 while (root->parent()) |
| 3170 root = root->parent(); | 3170 root = root->parent(); |
| 3171 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); | 3171 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); |
| 3172 } | 3172 } |
| 3173 } | 3173 } |
| 3174 | 3174 |
| 3175 #endif | 3175 #endif |
| OLD | NEW |