| 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 11 matching lines...) Expand all Loading... |
| 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 23 * Boston, MA 02110-1301, USA. | 23 * Boston, MA 02110-1301, USA. |
| 24 * | 24 * |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #include "config.h" | 27 #include "config.h" |
| 28 #include "core/rendering/RenderObject.h" | 28 #include "core/rendering/RenderObject.h" |
| 29 | 29 |
| 30 #include <stdio.h> | 30 #include <stdio.h> |
| 31 #include <algorithm> | 31 #include <algorithm> |
| 32 #include "AnimationController.h" | |
| 33 #include "Chrome.h" | 32 #include "Chrome.h" |
| 34 #include "EventHandler.h" | 33 #include "EventHandler.h" |
| 35 #include "Frame.h" | 34 #include "Frame.h" |
| 36 #include "FrameView.h" | 35 #include "FrameView.h" |
| 37 #include "HTMLElement.h" | 36 #include "HTMLElement.h" |
| 38 #include "HTMLNames.h" | 37 #include "HTMLNames.h" |
| 39 #include "Page.h" | 38 #include "Page.h" |
| 40 #include "Settings.h" | 39 #include "Settings.h" |
| 41 #include "StyleResolver.h" | 40 #include "StyleResolver.h" |
| 42 #include "WebCoreMemoryInstrumentation.h" | 41 #include "WebCoreMemoryInstrumentation.h" |
| 43 #include "core/accessibility/AXObjectCache.h" | 42 #include "core/accessibility/AXObjectCache.h" |
| 44 #include "core/editing/EditingBoundary.h" | 43 #include "core/editing/EditingBoundary.h" |
| 45 #include "core/editing/FrameSelection.h" | 44 #include "core/editing/FrameSelection.h" |
| 46 #include "core/editing/htmlediting.h" | 45 #include "core/editing/htmlediting.h" |
| 46 #include "core/page/animation/AnimationController.h" |
| 47 #include "core/platform/graphics/DashArray.h" | 47 #include "core/platform/graphics/DashArray.h" |
| 48 #include "core/platform/graphics/FloatQuad.h" | 48 #include "core/platform/graphics/FloatQuad.h" |
| 49 #include "core/platform/graphics/GraphicsContext.h" | 49 #include "core/platform/graphics/GraphicsContext.h" |
| 50 #include "core/platform/graphics/transforms/TransformState.h" | 50 #include "core/platform/graphics/transforms/TransformState.h" |
| 51 #include "core/rendering/FlowThreadController.h" | 51 #include "core/rendering/FlowThreadController.h" |
| 52 #include "core/rendering/HitTestResult.h" | 52 #include "core/rendering/HitTestResult.h" |
| 53 #include "core/rendering/RenderArena.h" | 53 #include "core/rendering/RenderArena.h" |
| 54 #include "core/rendering/RenderCounter.h" | 54 #include "core/rendering/RenderCounter.h" |
| 55 #include "core/rendering/RenderDeprecatedFlexibleBox.h" | 55 #include "core/rendering/RenderDeprecatedFlexibleBox.h" |
| 56 #include "core/rendering/RenderFlexibleBox.h" | 56 #include "core/rendering/RenderFlexibleBox.h" |
| (...skipping 3109 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 |