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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 #include "core/rendering/RenderTableCaption.h" | 68 #include "core/rendering/RenderTableCaption.h" |
69 #include "core/rendering/RenderTableCell.h" | 69 #include "core/rendering/RenderTableCell.h" |
70 #include "core/rendering/RenderTableCol.h" | 70 #include "core/rendering/RenderTableCol.h" |
71 #include "core/rendering/RenderTableRow.h" | 71 #include "core/rendering/RenderTableRow.h" |
72 #include "core/rendering/RenderTheme.h" | 72 #include "core/rendering/RenderTheme.h" |
73 #include "core/rendering/RenderView.h" | 73 #include "core/rendering/RenderView.h" |
74 #include "core/rendering/compositing/CompositedLayerMapping.h" | 74 #include "core/rendering/compositing/CompositedLayerMapping.h" |
75 #include "core/rendering/compositing/RenderLayerCompositor.h" | 75 #include "core/rendering/compositing/RenderLayerCompositor.h" |
76 #include "core/rendering/style/ContentData.h" | 76 #include "core/rendering/style/ContentData.h" |
77 #include "core/rendering/style/ShadowList.h" | 77 #include "core/rendering/style/ShadowList.h" |
78 #include "core/rendering/svg/SVGRenderSupport.h" | |
79 #include "platform/JSONValues.h" | 78 #include "platform/JSONValues.h" |
80 #include "platform/Partitions.h" | 79 #include "platform/Partitions.h" |
81 #include "platform/RuntimeEnabledFeatures.h" | 80 #include "platform/RuntimeEnabledFeatures.h" |
82 #include "platform/TraceEvent.h" | 81 #include "platform/TraceEvent.h" |
83 #include "platform/TracedValue.h" | 82 #include "platform/TracedValue.h" |
84 #include "platform/geometry/TransformState.h" | 83 #include "platform/geometry/TransformState.h" |
85 #include "platform/graphics/GraphicsContext.h" | 84 #include "platform/graphics/GraphicsContext.h" |
86 #include "wtf/RefCountedLeakCounter.h" | 85 #include "wtf/RefCountedLeakCounter.h" |
87 #include "wtf/text/StringBuilder.h" | 86 #include "wtf/text/StringBuilder.h" |
88 #include "wtf/text/WTFString.h" | 87 #include "wtf/text/WTFString.h" |
(...skipping 3452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3541 { | 3540 { |
3542 if (object1) { | 3541 if (object1) { |
3543 const WebCore::RenderObject* root = object1; | 3542 const WebCore::RenderObject* root = object1; |
3544 while (root->parent()) | 3543 while (root->parent()) |
3545 root = root->parent(); | 3544 root = root->parent(); |
3546 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); | 3545 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); |
3547 } | 3546 } |
3548 } | 3547 } |
3549 | 3548 |
3550 #endif | 3549 #endif |
OLD | NEW |