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 13 matching lines...) Expand all Loading... |
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 "HTMLElement.h" | 32 #include "HTMLElement.h" |
33 #include "HTMLNames.h" | 33 #include "HTMLNames.h" |
34 #include "WebCoreMemoryInstrumentation.h" | |
35 #include "core/accessibility/AXObjectCache.h" | 34 #include "core/accessibility/AXObjectCache.h" |
36 #include "core/css/StyleResolver.h" | 35 #include "core/css/StyleResolver.h" |
| 36 #include "core/dom/WebCoreMemoryInstrumentation.h" |
37 #include "core/editing/EditingBoundary.h" | 37 #include "core/editing/EditingBoundary.h" |
38 #include "core/editing/FrameSelection.h" | 38 #include "core/editing/FrameSelection.h" |
39 #include "core/editing/htmlediting.h" | 39 #include "core/editing/htmlediting.h" |
40 #include "core/page/Chrome.h" | 40 #include "core/page/Chrome.h" |
41 #include "core/page/EventHandler.h" | 41 #include "core/page/EventHandler.h" |
42 #include "core/page/Frame.h" | 42 #include "core/page/Frame.h" |
43 #include "core/page/FrameView.h" | 43 #include "core/page/FrameView.h" |
44 #include "core/page/Page.h" | 44 #include "core/page/Page.h" |
45 #include "core/page/Settings.h" | 45 #include "core/page/Settings.h" |
46 #include "core/page/animation/AnimationController.h" | 46 #include "core/page/animation/AnimationController.h" |
(...skipping 3130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3177 { | 3177 { |
3178 if (object1) { | 3178 if (object1) { |
3179 const WebCore::RenderObject* root = object1; | 3179 const WebCore::RenderObject* root = object1; |
3180 while (root->parent()) | 3180 while (root->parent()) |
3181 root = root->parent(); | 3181 root = root->parent(); |
3182 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); | 3182 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); |
3183 } | 3183 } |
3184 } | 3184 } |
3185 | 3185 |
3186 #endif | 3186 #endif |
OLD | NEW |