| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 #include "core/rendering/RenderMarquee.h" | 55 #include "core/rendering/RenderMarquee.h" |
| 56 #include "core/rendering/RenderNamedFlowThread.h" | 56 #include "core/rendering/RenderNamedFlowThread.h" |
| 57 #include "core/rendering/RenderRegion.h" | 57 #include "core/rendering/RenderRegion.h" |
| 58 #include "core/rendering/RenderTableCell.h" | 58 #include "core/rendering/RenderTableCell.h" |
| 59 #include "core/rendering/RenderTextFragment.h" | 59 #include "core/rendering/RenderTextFragment.h" |
| 60 #include "core/rendering/RenderTheme.h" | 60 #include "core/rendering/RenderTheme.h" |
| 61 #include "core/rendering/RenderView.h" | 61 #include "core/rendering/RenderView.h" |
| 62 #include "core/rendering/shapes/ShapeInsideInfo.h" | 62 #include "core/rendering/shapes/ShapeInsideInfo.h" |
| 63 #include "core/rendering/shapes/ShapeOutsideInfo.h" | 63 #include "core/rendering/shapes/ShapeOutsideInfo.h" |
| 64 #include "core/rendering/svg/SVGTextRunRenderingContext.h" | 64 #include "core/rendering/svg/SVGTextRunRenderingContext.h" |
| 65 #include <wtf/StdLibExtras.h> | 65 #include "wtf/StdLibExtras.h" |
| 66 #include <wtf/TemporaryChange.h> | 66 #include "wtf/TemporaryChange.h" |
| 67 | 67 |
| 68 using namespace std; | 68 using namespace std; |
| 69 using namespace WTF; | 69 using namespace WTF; |
| 70 using namespace Unicode; | 70 using namespace Unicode; |
| 71 | 71 |
| 72 namespace WebCore { | 72 namespace WebCore { |
| 73 | 73 |
| 74 using namespace HTMLNames; | 74 using namespace HTMLNames; |
| 75 | 75 |
| 76 struct SameSizeAsRenderBlock : public RenderBox { | 76 struct SameSizeAsRenderBlock : public RenderBox { |
| (...skipping 8182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8259 } | 8259 } |
| 8260 | 8260 |
| 8261 String ValueToString<RenderBlock::FloatingObject*>::string(const RenderBlock::Fl
oatingObject* floatingObject) | 8261 String ValueToString<RenderBlock::FloatingObject*>::string(const RenderBlock::Fl
oatingObject* floatingObject) |
| 8262 { | 8262 { |
| 8263 return String::format("%p (%dx%d %dx%d)", floatingObject, floatingObject->fr
ameRect().pixelSnappedX(), floatingObject->frameRect().pixelSnappedY(), floating
Object->frameRect().pixelSnappedMaxX(), floatingObject->frameRect().pixelSnapped
MaxY()); | 8263 return String::format("%p (%dx%d %dx%d)", floatingObject, floatingObject->fr
ameRect().pixelSnappedX(), floatingObject->frameRect().pixelSnappedY(), floating
Object->frameRect().pixelSnappedMaxX(), floatingObject->frameRect().pixelSnapped
MaxY()); |
| 8264 } | 8264 } |
| 8265 | 8265 |
| 8266 #endif | 8266 #endif |
| 8267 | 8267 |
| 8268 } // namespace WebCore | 8268 } // namespace WebCore |
| OLD | NEW |