Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: third_party/WebKit/Source/core/layout/line/InlineTextBox.cpp

Issue 2337133004: Revert of Apply first-line transform-text style (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/core/layout/line/InlineTextBox.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 String InlineTextBox::debugName() const 600 String InlineTextBox::debugName() const
601 { 601 {
602 return String(boxName()) + " '" + text() + "'"; 602 return String(boxName()) + " '" + text() + "'";
603 } 603 }
604 604
605 String InlineTextBox::text() const 605 String InlineTextBox::text() const
606 { 606 {
607 return getLineLayoutItem().text().substring(start(), len()); 607 return getLineLayoutItem().text().substring(start(), len());
608 } 608 }
609 609
610 void InlineTextBox::transformText()
611 {
612 getLineLayoutItem().applyTextTransformFromTo(start(), len(), getLineLayoutIt em().style(isFirstLineStyle()));
613 }
614
615 #ifndef NDEBUG 610 #ifndef NDEBUG
616 611
617 void InlineTextBox::showBox(int printedCharacters) const 612 void InlineTextBox::showBox(int printedCharacters) const
618 { 613 {
619 String value = text(); 614 String value = text();
620 value.replace('\\', "\\\\"); 615 value.replace('\\', "\\\\");
621 value.replace('\n', "\\n"); 616 value.replace('\n', "\\n");
622 printedCharacters += fprintf(stderr, "%s %p", boxName(), this); 617 printedCharacters += fprintf(stderr, "%s %p", boxName(), this);
623 for (; printedCharacters < showTreeCharacterOffset; printedCharacters++) 618 for (; printedCharacters < showTreeCharacterOffset; printedCharacters++)
624 fputc(' ', stderr); 619 fputc(' ', stderr);
625 const LineLayoutText obj = getLineLayoutItem(); 620 const LineLayoutText obj = getLineLayoutItem();
626 printedCharacters = fprintf(stderr, "\t%s %p", obj.name(), obj.debugPointer( )); 621 printedCharacters = fprintf(stderr, "\t%s %p", obj.name(), obj.debugPointer( ));
627 const int layoutObjectCharacterOffset = 75; 622 const int layoutObjectCharacterOffset = 75;
628 for (; printedCharacters < layoutObjectCharacterOffset; printedCharacters++) 623 for (; printedCharacters < layoutObjectCharacterOffset; printedCharacters++)
629 fputc(' ', stderr); 624 fputc(' ', stderr);
630 fprintf(stderr, "(%d,%d) \"%s\"\n", start(), start() + len(), value.utf8().d ata()); 625 fprintf(stderr, "(%d,%d) \"%s\"\n", start(), start() + len(), value.utf8().d ata());
631 } 626 }
632 627
633 #endif 628 #endif
634 629
635 } // namespace blink 630 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/line/InlineTextBox.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698