HomeSort by relevance Sort by last modified time
    Searched defs:alwaysCreateLineBoxes (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderInline.h 77 InlineBox* firstLineBoxIncludingCulling() const { return alwaysCreateLineBoxes() ? firstLineBox() : culledInlineFirstLineBox(); }
78 InlineBox* lastLineBoxIncludingCulling() const { return alwaysCreateLineBoxes() ? lastLineBox() : culledInlineLastLineBox(); }
93 bool alwaysCreateLineBoxes() const { return m_alwaysCreateLineBoxes; }
RenderInline.cpp 207 bool alwaysCreateLineBoxes = hasSelfPaintingLayer() || hasBoxDecorations() || newStyle->hasPadding() || newStyle->hasMargin() || hasOutline();
208 if (oldStyle && alwaysCreateLineBoxes) {
212 m_alwaysCreateLineBoxes = alwaysCreateLineBoxes;
226 bool alwaysCreateLineBoxes = (parentRenderInline && parentRenderInline->alwaysCreateLineBoxes())
233 if (!alwaysCreateLineBoxes && checkFonts && document().styleEngine()->usesFirstLineRules()) {
237 alwaysCreateLineBoxes = !parentStyle->font().fontMetrics().hasIdenticalAscentDescentAndLineGap(childStyle->font().fontMetrics())
242 if (alwaysCreateLineBoxes) {
546 if (!alwaysCreateLineBoxes())
585 if (!currInline->alwaysCreateLineBoxes())
    [all...]

Completed in 230 milliseconds