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 194 bool alwaysCreateLineBoxes = hasSelfPaintingLayer() || hasBoxDecorations() || newStyle->hasPadding() || newStyle->hasMargin() || hasOutline();
195 if (oldStyle && alwaysCreateLineBoxes) {
199 m_alwaysCreateLineBoxes = alwaysCreateLineBoxes;
214 bool alwaysCreateLineBoxes = (parentRenderInline && parentRenderInline->alwaysCreateLineBoxes())
222 if (!alwaysCreateLineBoxes && checkFonts && document().styleEngine()->usesFirstLineRules()) {
226 alwaysCreateLineBoxes = !parentStyle->font().fontMetrics().hasIdenticalAscentDescentAndLineGap(childStyle->font().fontMetrics())
231 if (alwaysCreateLineBoxes) {
535 if (!alwaysCreateLineBoxes())
574 if (!currInline->alwaysCreateLineBoxes())
    [all...]
RenderLineBoxList.cpp 322 if (inlineContainer && !inlineContainer->alwaysCreateLineBoxes()) {
RenderBlockLineLayout.cpp 196 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 78 milliseconds