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

Side by Side Diff: Source/core/layout/LayoutText.cpp

Issue 1156143002: *** NOT FOR LANDING *** Text nodes should only inherit inheritable properties. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Some tests need to be rebaselined. Text nodes can no longer have z-index. Created 5 years, 6 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 | Annotate | Revision Log
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 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) 5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net)
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
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 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 } else { 702 } else {
703 left = std::min(left, rightEdge - caretWidthRightOfOffset); 703 left = std::min(left, rightEdge - caretWidthRightOfOffset);
704 left = std::max(left, rootLeft); 704 left = std::max(left, rootLeft);
705 } 705 }
706 706
707 return LayoutRect(style()->isHorizontalWritingMode() ? IntRect(left, top, ca retWidth, height) : IntRect(top, left, height, caretWidth)); 707 return LayoutRect(style()->isHorizontalWritingMode() ? IntRect(left, top, ca retWidth, height) : IntRect(top, left, height, caretWidth));
708 } 708 }
709 709
710 ALWAYS_INLINE float LayoutText::widthFromCache(const Font& f, int start, int len , float xPos, TextDirection textDirection, HashSet<const SimpleFontData*>* fallb ackFonts, GlyphOverflow* glyphOverflow) const 710 ALWAYS_INLINE float LayoutText::widthFromCache(const Font& f, int start, int len , float xPos, TextDirection textDirection, HashSet<const SimpleFontData*>* fallb ackFonts, GlyphOverflow* glyphOverflow) const
711 { 711 {
712 if (style()->hasTextCombine() && isCombineText()) { 712 if (isCombineText()) {
Julien - ping for review 2015/06/01 19:13:47 We were only creating LayoutCombineText nodes if s
mstensho (USE GERRIT) 2015/06/01 19:31:37 -webkit-combine-text isn't an inherited property.
713 const LayoutTextCombine* combineText = toLayoutTextCombine(this); 713 const LayoutTextCombine* combineText = toLayoutTextCombine(this);
714 if (combineText->isCombined()) 714 if (combineText->isCombined())
715 return combineText->combinedTextWidth(f); 715 return combineText->combinedTextWidth(f);
716 } 716 }
717 717
718 TextRun run = constructTextRun(const_cast<LayoutText*>(this), f, this, start , len, styleRef(), textDirection); 718 TextRun run = constructTextRun(const_cast<LayoutText*>(this), f, this, start , len, styleRef(), textDirection);
719 run.setCharactersLength(textLength() - start); 719 run.setCharactersLength(textLength() - start);
720 ASSERT(run.charactersLength() >= run.length()); 720 ASSERT(run.charactersLength() >= run.length());
721 run.setCodePath(canUseSimpleFontCodePath() ? TextRun::ForceSimple : TextRun: :ForceComplex); 721 run.setCodePath(canUseSimpleFontCodePath() ? TextRun::ForceSimple : TextRun: :ForceComplex);
722 run.setTabSize(!style()->collapseWhiteSpace(), style()->tabSize()); 722 run.setTabSize(!style()->collapseWhiteSpace(), style()->tabSize());
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after
1855 } 1855 }
1856 1856
1857 void LayoutText::invalidateDisplayItemClients(const LayoutBoxModelObject& paintI nvalidationContainer) const 1857 void LayoutText::invalidateDisplayItemClients(const LayoutBoxModelObject& paintI nvalidationContainer) const
1858 { 1858 {
1859 LayoutObject::invalidateDisplayItemClients(paintInvalidationContainer); 1859 LayoutObject::invalidateDisplayItemClients(paintInvalidationContainer);
1860 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) 1860 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
1861 paintInvalidationContainer.invalidateDisplayItemClientOnBacking(*box); 1861 paintInvalidationContainer.invalidateDisplayItemClientOnBacking(*box);
1862 } 1862 }
1863 1863
1864 } // namespace blink 1864 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698