Home | History | Annotate | Download | only in rendering

Lines Matching refs:firstLine

862 int RenderInline::lineHeight(bool firstLine, bool /*isRootLineBox*/) const
864 if (firstLine && document()->usesFirstLineRules()) {
865 RenderStyle* s = style(firstLine);
876 int RenderInline::verticalPositionFromCache(bool firstLine) const
878 if (firstLine) // We're only really a first-line style if the document actually uses first-line rules.
879 firstLine = document()->usesFirstLineRules();
881 if (m_verticalPosition == PositionUndefined || firstLine) {
882 vpos = verticalPosition(firstLine);
883 if (!firstLine)