| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 #include "core/rendering/RenderTableRow.h" | 77 #include "core/rendering/RenderTableRow.h" |
| 78 #include "core/rendering/RenderTheme.h" | 78 #include "core/rendering/RenderTheme.h" |
| 79 #include "core/rendering/RenderView.h" | 79 #include "core/rendering/RenderView.h" |
| 80 #include "core/rendering/style/ContentData.h" | 80 #include "core/rendering/style/ContentData.h" |
| 81 #include "core/rendering/style/CursorList.h" | 81 #include "core/rendering/style/CursorList.h" |
| 82 #include "core/rendering/svg/SVGRenderSupport.h" | 82 #include "core/rendering/svg/SVGRenderSupport.h" |
| 83 #include "wtf/RefCountedLeakCounter.h" | 83 #include "wtf/RefCountedLeakCounter.h" |
| 84 #include "wtf/UnusedParam.h" | 84 #include "wtf/UnusedParam.h" |
| 85 #include "wtf/text/StringBuilder.h" | 85 #include "wtf/text/StringBuilder.h" |
| 86 #include <algorithm> | 86 #include <algorithm> |
| 87 #ifndef NDEBUG |
| 87 #include <stdio.h> | 88 #include <stdio.h> |
| 89 #endif |
| 88 | 90 |
| 89 using namespace std; | 91 using namespace std; |
| 90 | 92 |
| 91 namespace WebCore { | 93 namespace WebCore { |
| 92 | 94 |
| 93 using namespace HTMLNames; | 95 using namespace HTMLNames; |
| 94 | 96 |
| 95 #ifndef NDEBUG | 97 #ifndef NDEBUG |
| 96 | 98 |
| 97 RenderObject::SetLayoutNeededForbiddenScope::SetLayoutNeededForbiddenScope(Rende
rObject* renderObject, bool isForbidden) | 99 RenderObject::SetLayoutNeededForbiddenScope::SetLayoutNeededForbiddenScope(Rende
rObject* renderObject, bool isForbidden) |
| (...skipping 3219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3317 { | 3319 { |
| 3318 if (object1) { | 3320 if (object1) { |
| 3319 const WebCore::RenderObject* root = object1; | 3321 const WebCore::RenderObject* root = object1; |
| 3320 while (root->parent()) | 3322 while (root->parent()) |
| 3321 root = root->parent(); | 3323 root = root->parent(); |
| 3322 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); | 3324 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); |
| 3323 } | 3325 } |
| 3324 } | 3326 } |
| 3325 | 3327 |
| 3326 #endif | 3328 #endif |
| OLD | NEW |