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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderInline.h 74 InlineBox* firstLineBoxIncludingCulling() const { return alwaysCreateLineBoxes() ? firstLineBox() : culledInlineFirstLineBox(); }
75 InlineBox* lastLineBoxIncludingCulling() const { return alwaysCreateLineBoxes() ? lastLineBox() : culledInlineLastLineBox(); }
90 bool alwaysCreateLineBoxes() const { return m_alwaysCreateLineBoxes; }
RenderInline.cpp 192 bool alwaysCreateLineBoxes = hasSelfPaintingLayer() || hasBoxDecorations() || newStyle->hasPadding() || newStyle->hasMargin() || hasOutline();
193 if (oldStyle && alwaysCreateLineBoxes) {
197 m_alwaysCreateLineBoxes = alwaysCreateLineBoxes;
212 bool alwaysCreateLineBoxes = (parentRenderInline && parentRenderInline->alwaysCreateLineBoxes())
220 if (!alwaysCreateLineBoxes && checkFonts && document()->styleSheetCollection()->usesFirstLineRules()) {
224 alwaysCreateLineBoxes = !parentStyle->font().fontMetrics().hasIdenticalAscentDescentAndLineGap(childStyle->font().fontMetrics())
229 if (alwaysCreateLineBoxes) {
533 if (!alwaysCreateLineBoxes())
572 if (!currInline->alwaysCreateLineBoxes())
    [all...]
RenderLineBoxList.cpp 321 if (inlineContainer && !inlineContainer->alwaysCreateLineBoxes()) {
RenderBlockLineLayout.cpp 544 bool allowedToConstructNewBox = !hasDefaultLineBoxContain || !inlineFlow || inlineFlow->alwaysCreateLineBoxes();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SimplifyMarkupCommand.cpp 71 if (!currentNode->renderer() || !currentNode->renderer()->isRenderInline() || toRenderInline(currentNode->renderer())->alwaysCreateLineBoxes())

Completed in 74 milliseconds