| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 #include "core/rendering/RenderTheme.h" | 76 #include "core/rendering/RenderTheme.h" |
| 77 #include "core/rendering/RenderView.h" | 77 #include "core/rendering/RenderView.h" |
| 78 #include "core/rendering/style/ContentData.h" | 78 #include "core/rendering/style/ContentData.h" |
| 79 #include "core/rendering/style/CursorList.h" | 79 #include "core/rendering/style/CursorList.h" |
| 80 #include "core/rendering/style/ShadowList.h" | 80 #include "core/rendering/style/ShadowList.h" |
| 81 #include "core/rendering/svg/SVGRenderSupport.h" | 81 #include "core/rendering/svg/SVGRenderSupport.h" |
| 82 #include "platform/Partitions.h" | 82 #include "platform/Partitions.h" |
| 83 #include "platform/geometry/TransformState.h" | 83 #include "platform/geometry/TransformState.h" |
| 84 #include "platform/graphics/GraphicsContext.h" | 84 #include "platform/graphics/GraphicsContext.h" |
| 85 #include "wtf/RefCountedLeakCounter.h" | 85 #include "wtf/RefCountedLeakCounter.h" |
| 86 #include "wtf/UnusedParam.h" | |
| 87 #include "wtf/text/StringBuilder.h" | 86 #include "wtf/text/StringBuilder.h" |
| 88 #include <algorithm> | 87 #include <algorithm> |
| 89 #ifndef NDEBUG | 88 #ifndef NDEBUG |
| 90 #include <stdio.h> | 89 #include <stdio.h> |
| 91 #endif | 90 #endif |
| 92 | 91 |
| 93 using namespace std; | 92 using namespace std; |
| 94 | 93 |
| 95 namespace WebCore { | 94 namespace WebCore { |
| 96 | 95 |
| (...skipping 3259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3356 { | 3355 { |
| 3357 if (object1) { | 3356 if (object1) { |
| 3358 const WebCore::RenderObject* root = object1; | 3357 const WebCore::RenderObject* root = object1; |
| 3359 while (root->parent()) | 3358 while (root->parent()) |
| 3360 root = root->parent(); | 3359 root = root->parent(); |
| 3361 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); | 3360 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); |
| 3362 } | 3361 } |
| 3363 } | 3362 } |
| 3364 | 3363 |
| 3365 #endif | 3364 #endif |
| OLD | NEW |