| 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 10 matching lines...) Expand all Loading... |
| 21 * along with this library; see the file COPYING.LIB. If not, write to | 21 * along with this library; see the file COPYING.LIB. If not, write to |
| 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 "RenderObject.h" | 28 #include "RenderObject.h" |
| 29 | 29 |
| 30 #include "AXObjectCache.h" | 30 #include "AXObjectCache.h" |
| 31 #include "AnimationController.h" |
| 31 #include "Chrome.h" | 32 #include "Chrome.h" |
| 32 #include "ContentData.h" | 33 #include "ContentData.h" |
| 33 #include "CursorList.h" | 34 #include "CursorList.h" |
| 34 #include "DashArray.h" | 35 #include "DashArray.h" |
| 35 #include "EditingBoundary.h" | 36 #include "EditingBoundary.h" |
| 37 #include "EventHandler.h" |
| 36 #include "FloatQuad.h" | 38 #include "FloatQuad.h" |
| 37 #include "FlowThreadController.h" | 39 #include "FlowThreadController.h" |
| 38 #include "Frame.h" | 40 #include "Frame.h" |
| 41 #include "FrameSelection.h" |
| 39 #include "FrameView.h" | 42 #include "FrameView.h" |
| 40 #include "GraphicsContext.h" | 43 #include "GraphicsContext.h" |
| 41 #include "HTMLElement.h" | 44 #include "HTMLElement.h" |
| 42 #include "HTMLNames.h" | 45 #include "HTMLNames.h" |
| 43 #include "HitTestResult.h" | 46 #include "HitTestResult.h" |
| 44 #include "Page.h" | 47 #include "Page.h" |
| 45 #include "RenderArena.h" | 48 #include "RenderArena.h" |
| 46 #include "RenderCounter.h" | 49 #include "RenderCounter.h" |
| 47 #include "RenderDeprecatedFlexibleBox.h" | 50 #include "RenderDeprecatedFlexibleBox.h" |
| 48 #include "RenderFlexibleBox.h" | 51 #include "RenderFlexibleBox.h" |
| (...skipping 3105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3154 { | 3157 { |
| 3155 if (object1) { | 3158 if (object1) { |
| 3156 const WebCore::RenderObject* root = object1; | 3159 const WebCore::RenderObject* root = object1; |
| 3157 while (root->parent()) | 3160 while (root->parent()) |
| 3158 root = root->parent(); | 3161 root = root->parent(); |
| 3159 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); | 3162 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); |
| 3160 } | 3163 } |
| 3161 } | 3164 } |
| 3162 | 3165 |
| 3163 #endif | 3166 #endif |
| OLD | NEW |