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());
927 bool breakAll = (styleToUse->wordBreak() == BreakAllWordBreak || styleToUse->wordBreak() == BreakWordBreak) && styleToUse->autoWrap();
932 TextDirection textDirection = styleToUse->direction();
933 if (isOverride(styleToUse->unicodeBidi())) {
964 if (styleToUse->preserveNewline()) {
971 if (!styleToUse->collapseWhiteSpace()) {
980 bool isBreakableLocation = isNewline || (isSpace && styleToUse->autoWrap());
988 if (!ignoringSpaces && styleToUse->collapseWhiteSpace() && previousCharacterIsSpace && isSpace)
1036 cachedWordTrailingSpaceWidth[textDirection] = f.width(constructTextRun(this, f, &space, 1, styleToUse, textDirection)) + wordSpacing;
1060 bool isCollapsibleWhiteSpace = (j < len) && styleToUse->isCollapsibleWhiteSpace(c);
1061 if (j < len && styleToUse->autoWrap())
1099 if (!styleToUse->autoWrap())
1107 TextRun run = constructTextRun(this, f, this, i, 1, styleToUse, textDirection);
1134 if (!styleToUse->autoWrap())
1137 if (styleToUse->whiteSpace() == PRE) {