| 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. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. |
| 5 * All rights reserved. | 5 * All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "core/layout/HitTestResult.h" | 26 #include "core/layout/HitTestResult.h" |
| 27 #include "core/layout/api/LineLayoutBR.h" | 27 #include "core/layout/api/LineLayoutBR.h" |
| 28 #include "core/layout/api/LineLayoutBox.h" | 28 #include "core/layout/api/LineLayoutBox.h" |
| 29 #include "core/layout/api/LineLayoutRubyRun.h" | 29 #include "core/layout/api/LineLayoutRubyRun.h" |
| 30 #include "core/layout/api/LineLayoutRubyText.h" | 30 #include "core/layout/api/LineLayoutRubyText.h" |
| 31 #include "core/layout/line/AbstractInlineTextBox.h" | 31 #include "core/layout/line/AbstractInlineTextBox.h" |
| 32 #include "core/layout/line/EllipsisBox.h" | 32 #include "core/layout/line/EllipsisBox.h" |
| 33 #include "core/paint/InlineTextBoxPainter.h" | 33 #include "core/paint/InlineTextBoxPainter.h" |
| 34 #include "platform/fonts/CharacterRange.h" | 34 #include "platform/fonts/CharacterRange.h" |
| 35 #include "platform/fonts/FontCache.h" | 35 #include "platform/fonts/FontCache.h" |
| 36 #include "platform/fonts/shaping/SimpleShaper.h" | |
| 37 #include "wtf/Vector.h" | 36 #include "wtf/Vector.h" |
| 38 #include "wtf/text/StringBuilder.h" | 37 #include "wtf/text/StringBuilder.h" |
| 39 | 38 |
| 40 #include <algorithm> | 39 #include <algorithm> |
| 41 | 40 |
| 42 namespace blink { | 41 namespace blink { |
| 43 | 42 |
| 44 struct SameSizeAsInlineTextBox : public InlineBox { | 43 struct SameSizeAsInlineTextBox : public InlineBox { |
| 45 unsigned variables[1]; | 44 unsigned variables[1]; |
| 46 unsigned short variables2[2]; | 45 unsigned short variables2[2]; |
| (...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 const int layoutObjectCharacterOffset = 75; | 682 const int layoutObjectCharacterOffset = 75; |
| 684 for (; printedCharacters < layoutObjectCharacterOffset; printedCharacters++) | 683 for (; printedCharacters < layoutObjectCharacterOffset; printedCharacters++) |
| 685 fputc(' ', stderr); | 684 fputc(' ', stderr); |
| 686 fprintf(stderr, "(%d,%d) \"%s\"\n", start(), start() + len(), | 685 fprintf(stderr, "(%d,%d) \"%s\"\n", start(), start() + len(), |
| 687 value.utf8().data()); | 686 value.utf8().data()); |
| 688 } | 687 } |
| 689 | 688 |
| 690 #endif | 689 #endif |
| 691 | 690 |
| 692 } // namespace blink | 691 } // namespace blink |
| OLD | NEW |