| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h" | 60 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h" |
| 61 #include "core/layout/LayoutPart.h" | 61 #include "core/layout/LayoutPart.h" |
| 62 #include "core/layout/LayoutScrollbarPart.h" | 62 #include "core/layout/LayoutScrollbarPart.h" |
| 63 #include "core/layout/LayoutTableCaption.h" | 63 #include "core/layout/LayoutTableCaption.h" |
| 64 #include "core/layout/LayoutTableCell.h" | 64 #include "core/layout/LayoutTableCell.h" |
| 65 #include "core/layout/LayoutTableCol.h" | 65 #include "core/layout/LayoutTableCol.h" |
| 66 #include "core/layout/LayoutTableRow.h" | 66 #include "core/layout/LayoutTableRow.h" |
| 67 #include "core/layout/LayoutTheme.h" | 67 #include "core/layout/LayoutTheme.h" |
| 68 #include "core/layout/LayoutView.h" | 68 #include "core/layout/LayoutView.h" |
| 69 #include "core/layout/api/LayoutAPIShim.h" | 69 #include "core/layout/api/LayoutAPIShim.h" |
| 70 #include "core/layout/api/LayoutPartItem.h" |
| 70 #include "core/layout/ng/layout_ng_block_flow.h" | 71 #include "core/layout/ng/layout_ng_block_flow.h" |
| 71 #include "core/page/AutoscrollController.h" | 72 #include "core/page/AutoscrollController.h" |
| 72 #include "core/page/Page.h" | 73 #include "core/page/Page.h" |
| 73 #include "core/paint/ObjectPaintInvalidator.h" | 74 #include "core/paint/ObjectPaintInvalidator.h" |
| 74 #include "core/paint/ObjectPaintProperties.h" | 75 #include "core/paint/ObjectPaintProperties.h" |
| 75 #include "core/paint/PaintLayer.h" | 76 #include "core/paint/PaintLayer.h" |
| 76 #include "core/style/ContentData.h" | 77 #include "core/style/ContentData.h" |
| 77 #include "core/style/CursorData.h" | 78 #include "core/style/CursorData.h" |
| 78 #include "platform/RuntimeEnabledFeatures.h" | 79 #include "platform/RuntimeEnabledFeatures.h" |
| 79 #include "platform/TracedValue.h" | 80 #include "platform/TracedValue.h" |
| (...skipping 3176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3256 const blink::LayoutObject* root = object1; | 3257 const blink::LayoutObject* root = object1; |
| 3257 while (root->parent()) | 3258 while (root->parent()) |
| 3258 root = root->parent(); | 3259 root = root->parent(); |
| 3259 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0); | 3260 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0); |
| 3260 } else { | 3261 } else { |
| 3261 WTFLogAlways("%s", "Cannot showLayoutTree. Root is (nil)"); | 3262 WTFLogAlways("%s", "Cannot showLayoutTree. Root is (nil)"); |
| 3262 } | 3263 } |
| 3263 } | 3264 } |
| 3264 | 3265 |
| 3265 #endif | 3266 #endif |
| OLD | NEW |