Home | History | Annotate | Download | only in rendering

Lines Matching defs:styleToUse

911     RenderStyle* styleToUse = style();
912 const Font& f = styleToUse->font(); // FIXME: This ignores first-line.
913 float wordSpacing = styleToUse->wordSpacing();
915 LazyLineBreakIterator breakIterator(m_text, styleToUse->locale());
926 float wordTrailingSpaceWidth = f.typesettingFeatures() & Kerning ? f.width(RenderBlock::constructTextRun(this, f, &space, 1, styleToUse)) + wordSpacing : 0;
935 bool breakAll = (styleToUse->wordBreak() == BreakAllWordBreak || styleToUse->wordBreak() == BreakWordBreak) && styleToUse->autoWrap();
944 if (styleToUse->preserveNewline()) {
951 if (!styleToUse->collapseWhiteSpace()) {
959 bool isBreakableLocation = isNewline || (isSpace && styleToUse->autoWrap());
967 if (!ignoringSpaces && styleToUse->collapseWhiteSpace() && previousCharacterIsSpace && isSpace)
1027 bool isCollapsibleWhiteSpace = (j < len) && styleToUse->isCollapsibleWhiteSpace(c);
1028 if (j < len && styleToUse->autoWrap())
1066 if (!styleToUse->autoWrap())
1074 TextRun run = RenderBlock::constructTextRun(this, f, this, i, 1, styleToUse);
1098 if (!styleToUse->autoWrap())
1101 if (styleToUse->whiteSpace() == PRE) {