| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 #include "core/layout/LayoutObjectInlines.h" | 63 #include "core/layout/LayoutObjectInlines.h" |
| 64 #include "core/layout/LayoutPart.h" | 64 #include "core/layout/LayoutPart.h" |
| 65 #include "core/layout/LayoutScrollbarPart.h" | 65 #include "core/layout/LayoutScrollbarPart.h" |
| 66 #include "core/layout/LayoutTableCaption.h" | 66 #include "core/layout/LayoutTableCaption.h" |
| 67 #include "core/layout/LayoutTableCell.h" | 67 #include "core/layout/LayoutTableCell.h" |
| 68 #include "core/layout/LayoutTableCol.h" | 68 #include "core/layout/LayoutTableCol.h" |
| 69 #include "core/layout/LayoutTableRow.h" | 69 #include "core/layout/LayoutTableRow.h" |
| 70 #include "core/layout/LayoutTheme.h" | 70 #include "core/layout/LayoutTheme.h" |
| 71 #include "core/layout/LayoutView.h" | 71 #include "core/layout/LayoutView.h" |
| 72 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" | 72 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" |
| 73 #include "core/layout/style/ContentData.h" | 73 #include "core/style/ContentData.h" |
| 74 #include "core/layout/style/ShadowList.h" | 74 #include "core/style/ShadowList.h" |
| 75 #include "core/page/AutoscrollController.h" | 75 #include "core/page/AutoscrollController.h" |
| 76 #include "core/page/EventHandler.h" | 76 #include "core/page/EventHandler.h" |
| 77 #include "core/page/Page.h" | 77 #include "core/page/Page.h" |
| 78 #include "core/paint/DeprecatedPaintLayer.h" | 78 #include "core/paint/DeprecatedPaintLayer.h" |
| 79 #include "core/paint/ObjectPainter.h" | 79 #include "core/paint/ObjectPainter.h" |
| 80 #include "platform/JSONValues.h" | 80 #include "platform/JSONValues.h" |
| 81 #include "platform/Partitions.h" | 81 #include "platform/Partitions.h" |
| 82 #include "platform/RuntimeEnabledFeatures.h" | 82 #include "platform/RuntimeEnabledFeatures.h" |
| 83 #include "platform/TraceEvent.h" | 83 #include "platform/TraceEvent.h" |
| 84 #include "platform/TracedValue.h" | 84 #include "platform/TracedValue.h" |
| (...skipping 3145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3230 { | 3230 { |
| 3231 if (object1) { | 3231 if (object1) { |
| 3232 const blink::LayoutObject* root = object1; | 3232 const blink::LayoutObject* root = object1; |
| 3233 while (root->parent()) | 3233 while (root->parent()) |
| 3234 root = root->parent(); | 3234 root = root->parent(); |
| 3235 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0); | 3235 root->showLayoutTreeAndMark(object1, "*", object2, "-", 0); |
| 3236 } | 3236 } |
| 3237 } | 3237 } |
| 3238 | 3238 |
| 3239 #endif | 3239 #endif |
| OLD | NEW |