| 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) 2007 David Smith (catfish.man@gmail.com) | 4 * (C) 2007 David Smith (catfish.man@gmail.com) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. |
| 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "core/frame/FrameView.h" | 34 #include "core/frame/FrameView.h" |
| 35 #include "core/frame/LocalFrame.h" | 35 #include "core/frame/LocalFrame.h" |
| 36 #include "core/page/Page.h" | 36 #include "core/page/Page.h" |
| 37 #include "core/frame/Settings.h" | 37 #include "core/frame/Settings.h" |
| 38 #include "core/rendering/GraphicsContextAnnotator.h" | 38 #include "core/rendering/GraphicsContextAnnotator.h" |
| 39 #include "core/rendering/HitTestLocation.h" | 39 #include "core/rendering/HitTestLocation.h" |
| 40 #include "core/rendering/HitTestResult.h" | 40 #include "core/rendering/HitTestResult.h" |
| 41 #include "core/rendering/InlineIterator.h" | 41 #include "core/rendering/InlineIterator.h" |
| 42 #include "core/rendering/InlineTextBox.h" | 42 #include "core/rendering/InlineTextBox.h" |
| 43 #include "core/rendering/PaintInfo.h" | 43 #include "core/rendering/PaintInfo.h" |
| 44 #include "core/rendering/RenderCombineText.h" | |
| 45 #include "core/rendering/RenderFlexibleBox.h" | 44 #include "core/rendering/RenderFlexibleBox.h" |
| 46 #include "core/rendering/RenderGrid.h" | 45 #include "core/rendering/RenderGrid.h" |
| 47 #include "core/rendering/RenderInline.h" | 46 #include "core/rendering/RenderInline.h" |
| 48 #include "core/rendering/RenderLayer.h" | 47 #include "core/rendering/RenderLayer.h" |
| 49 #include "core/rendering/RenderObjectInlines.h" | 48 #include "core/rendering/RenderObjectInlines.h" |
| 50 #include "core/rendering/RenderView.h" | 49 #include "core/rendering/RenderView.h" |
| 51 #include "core/rendering/shapes/ShapeOutsideInfo.h" | 50 #include "core/rendering/shapes/ShapeOutsideInfo.h" |
| 52 #include "core/rendering/style/ContentData.h" | 51 #include "core/rendering/style/ContentData.h" |
| 53 #include "core/rendering/style/RenderStyle.h" | 52 #include "core/rendering/style/RenderStyle.h" |
| 54 #include "platform/geometry/FloatQuad.h" | 53 #include "platform/geometry/FloatQuad.h" |
| (...skipping 3068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3123 void RenderBlock::showLineTreeAndMark(const InlineBox* markedBox1, const char* m
arkedLabel1, const InlineBox* markedBox2, const char* markedLabel2, const Render
Object* obj) const | 3122 void RenderBlock::showLineTreeAndMark(const InlineBox* markedBox1, const char* m
arkedLabel1, const InlineBox* markedBox2, const char* markedLabel2, const Render
Object* obj) const |
| 3124 { | 3123 { |
| 3125 showRenderObject(); | 3124 showRenderObject(); |
| 3126 for (const RootInlineBox* root = firstRootBox(); root; root = root->nextRoot
Box()) | 3125 for (const RootInlineBox* root = firstRootBox(); root; root = root->nextRoot
Box()) |
| 3127 root->showLineTreeAndMark(markedBox1, markedLabel1, markedBox2, markedLa
bel2, obj, 1); | 3126 root->showLineTreeAndMark(markedBox1, markedLabel1, markedBox2, markedLa
bel2, obj, 1); |
| 3128 } | 3127 } |
| 3129 | 3128 |
| 3130 #endif | 3129 #endif |
| 3131 | 3130 |
| 3132 } // namespace blink | 3131 } // namespace blink |
| OLD | NEW |