| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/ShadowList.h" | 84 #include "core/style/ShadowList.h" |
| 85 #include "platform/HostWindow.h" | 85 #include "platform/HostWindow.h" |
| 86 #include "platform/RuntimeEnabledFeatures.h" | 86 #include "platform/RuntimeEnabledFeatures.h" |
| 87 #include "platform/TraceEvent.h" | 87 #include "platform/TraceEvent.h" |
| 88 #include "platform/TracedValue.h" | 88 #include "platform/TracedValue.h" |
| 89 #include "platform/geometry/TransformState.h" | 89 #include "platform/geometry/TransformState.h" |
| 90 #include "platform/graphics/GraphicsContext.h" | 90 #include "platform/graphics/GraphicsContext.h" |
| 91 #include "platform/graphics/paint/PaintController.h" | 91 #include "platform/graphics/paint/PaintController.h" |
| 92 #include "wtf/Partitions.h" | 92 #include "wtf/allocator/Partitions.h" |
| 93 #include "wtf/text/StringBuilder.h" | 93 #include "wtf/text/StringBuilder.h" |
| 94 #include "wtf/text/WTFString.h" | 94 #include "wtf/text/WTFString.h" |
| 95 #include <algorithm> | 95 #include <algorithm> |
| 96 #ifndef NDEBUG | 96 #ifndef NDEBUG |
| 97 #include <stdio.h> | 97 #include <stdio.h> |
| 98 #endif | 98 #endif |
| 99 | 99 |
| 100 namespace blink { | 100 namespace blink { |
| 101 | 101 |
| 102 namespace { | 102 namespace { |
| (...skipping 3575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3678 const blink::LayoutObject* root = object1; | 3678 const blink::LayoutObject* root = object1; |
| 3679 while (root->parent()) | 3679 while (root->parent()) |
| 3680 root = root->parent(); | 3680 root = root->parent(); |
| 3681 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0); | 3681 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0); |
| 3682 } else { | 3682 } else { |
| 3683 fprintf(stderr, "Cannot showLayoutTree. Root is (nil)\n"); | 3683 fprintf(stderr, "Cannot showLayoutTree. Root is (nil)\n"); |
| 3684 } | 3684 } |
| 3685 } | 3685 } |
| 3686 | 3686 |
| 3687 #endif | 3687 #endif |
| OLD | NEW |