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/layout/LayoutTheme.h" | 74 #include "core/layout/LayoutTheme.h" |
75 #include "core/layout/LayoutView.h" | 75 #include "core/layout/LayoutView.h" |
76 #include "core/layout/compositing/PaintLayerCompositor.h" | 76 #include "core/layout/compositing/PaintLayerCompositor.h" |
77 #include "core/page/AutoscrollController.h" | 77 #include "core/page/AutoscrollController.h" |
78 #include "core/page/Page.h" | 78 #include "core/page/Page.h" |
79 #include "core/paint/ObjectPaintProperties.h" | 79 #include "core/paint/ObjectPaintProperties.h" |
80 #include "core/paint/ObjectPainter.h" | 80 #include "core/paint/ObjectPainter.h" |
81 #include "core/paint/PaintInfo.h" | 81 #include "core/paint/PaintInfo.h" |
82 #include "core/paint/PaintLayer.h" | 82 #include "core/paint/PaintLayer.h" |
83 #include "core/style/ContentData.h" | 83 #include "core/style/ContentData.h" |
| 84 #include "core/style/CursorData.h" |
84 #include "core/style/ShadowList.h" | 85 #include "core/style/ShadowList.h" |
85 #include "platform/HostWindow.h" | 86 #include "platform/HostWindow.h" |
86 #include "platform/RuntimeEnabledFeatures.h" | 87 #include "platform/RuntimeEnabledFeatures.h" |
87 #include "platform/TraceEvent.h" | 88 #include "platform/TraceEvent.h" |
88 #include "platform/TracedValue.h" | 89 #include "platform/TracedValue.h" |
89 #include "platform/geometry/TransformState.h" | 90 #include "platform/geometry/TransformState.h" |
90 #include "platform/graphics/GraphicsContext.h" | 91 #include "platform/graphics/GraphicsContext.h" |
91 #include "platform/graphics/paint/PaintController.h" | 92 #include "platform/graphics/paint/PaintController.h" |
92 #include "wtf/allocator/Partitions.h" | 93 #include "wtf/allocator/Partitions.h" |
93 #include "wtf/text/StringBuilder.h" | 94 #include "wtf/text/StringBuilder.h" |
(...skipping 3606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3700 const blink::LayoutObject* root = object1; | 3701 const blink::LayoutObject* root = object1; |
3701 while (root->parent()) | 3702 while (root->parent()) |
3702 root = root->parent(); | 3703 root = root->parent(); |
3703 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0); | 3704 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0); |
3704 } else { | 3705 } else { |
3705 fprintf(stderr, "Cannot showLayoutTree. Root is (nil)\n"); | 3706 fprintf(stderr, "Cannot showLayoutTree. Root is (nil)\n"); |
3706 } | 3707 } |
3707 } | 3708 } |
3708 | 3709 |
3709 #endif | 3710 #endif |
OLD | NEW |