Home | History | Annotate | Download | only in rendering

Lines Matching refs:currWS

1851     EWhiteSpace currWS = style()->whiteSpace();
1852 EWhiteSpace lastWS = currWS;
1856 currWS = o->isReplaced() ? o->parent()->style()->whiteSpace() : o->style()->whiteSpace();
1859 bool autoWrap = RenderStyle::autoWrap(currWS);
1863 bool preserveNewline = o->isSVGInlineText() ? false : RenderStyle::preserveNewline(currWS);
1865 bool preserveNewline = RenderStyle::preserveNewline(currWS);
1868 bool collapseWhiteSpace = RenderStyle::collapseWhiteSpace(currWS);
2033 bool breakWords = o->style()->breakWords() && ((autoWrap && !width.committedWidth()) || currWS == PRE);
2074 bool betweenWords = c == '\n' || (currWS
2262 if (width.committedWidth() && !width.fitsOnLine() && lBreak.m_obj && currWS == NOWRAP)