| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999 Lars Knoll (knoll@kde.org) | 2 * (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Dirk Mueller (mueller@kde.org) | 3 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 #include "core/rendering/HitTestResult.h" | 39 #include "core/rendering/HitTestResult.h" |
| 40 #include "core/rendering/PaintInfo.h" | 40 #include "core/rendering/PaintInfo.h" |
| 41 #include "core/rendering/RenderBR.h" | 41 #include "core/rendering/RenderBR.h" |
| 42 #include "core/rendering/RenderBlock.h" | 42 #include "core/rendering/RenderBlock.h" |
| 43 #include "core/rendering/RenderCombineText.h" | 43 #include "core/rendering/RenderCombineText.h" |
| 44 #include "core/rendering/RenderRubyRun.h" | 44 #include "core/rendering/RenderRubyRun.h" |
| 45 #include "core/rendering/RenderRubyText.h" | 45 #include "core/rendering/RenderRubyText.h" |
| 46 #include "core/rendering/RenderTheme.h" | 46 #include "core/rendering/RenderTheme.h" |
| 47 #include "core/rendering/style/ShadowList.h" | 47 #include "core/rendering/style/ShadowList.h" |
| 48 #include "core/rendering/svg/SVGTextRunRenderingContext.h" | 48 #include "core/rendering/svg/SVGTextRunRenderingContext.h" |
| 49 #include "platform/RuntimeEnabledFeatures.h" |
| 49 #include "platform/fonts/FontCache.h" | 50 #include "platform/fonts/FontCache.h" |
| 50 #include "platform/fonts/GlyphBuffer.h" | 51 #include "platform/fonts/GlyphBuffer.h" |
| 51 #include "platform/fonts/WidthIterator.h" | 52 #include "platform/fonts/WidthIterator.h" |
| 52 #include "platform/graphics/DrawLooperBuilder.h" | 53 #include "platform/graphics/DrawLooperBuilder.h" |
| 53 #include "platform/graphics/GraphicsContextStateSaver.h" | 54 #include "platform/graphics/GraphicsContextStateSaver.h" |
| 54 #include "wtf/Vector.h" | 55 #include "wtf/Vector.h" |
| 55 #include "wtf/text/CString.h" | 56 #include "wtf/text/CString.h" |
| 56 #include "wtf/text/StringBuilder.h" | 57 #include "wtf/text/StringBuilder.h" |
| 57 | 58 |
| 58 #include <algorithm> | 59 #include <algorithm> |
| (...skipping 1521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1580 printedCharacters = fprintf(stderr, "\t%s %p", obj.renderName(), &obj); | 1581 printedCharacters = fprintf(stderr, "\t%s %p", obj.renderName(), &obj); |
| 1581 const int rendererCharacterOffset = 24; | 1582 const int rendererCharacterOffset = 24; |
| 1582 for (; printedCharacters < rendererCharacterOffset; printedCharacters++) | 1583 for (; printedCharacters < rendererCharacterOffset; printedCharacters++) |
| 1583 fputc(' ', stderr); | 1584 fputc(' ', stderr); |
| 1584 fprintf(stderr, "(%d,%d) \"%s\"\n", start(), start() + len(), value.utf8().d
ata()); | 1585 fprintf(stderr, "(%d,%d) \"%s\"\n", start(), start() + len(), value.utf8().d
ata()); |
| 1585 } | 1586 } |
| 1586 | 1587 |
| 1587 #endif | 1588 #endif |
| 1588 | 1589 |
| 1589 } // namespace WebCore | 1590 } // namespace WebCore |
| OLD | NEW |