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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderReplaced.cpp 446 RenderStyle* styleToUse = style();
447 if (styleToUse->logicalWidth().isPercent() || styleToUse->logicalMaxWidth().isPercent() || hasRelativeIntrinsicLogicalWidth())
450 if (styleToUse->logicalMinWidth().isFixed() && styleToUse->logicalMinWidth().value() > 0) {
451 m_maxPreferredLogicalWidth = max(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMinWidth().value()));
452 m_minPreferredLogicalWidth = max(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMinWidth().value()));
455 if (styleToUse->logicalMaxWidth().isFixed()) {
456 m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
457 m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()))
    [all...]
RenderTable.cpp     [all...]
InlineFlowBox.cpp     [all...]
InlineTextBox.cpp 204 RenderStyle* styleToUse = textObj->style(isFirstLineStyle());
205 const Font& font = styleToUse->font();
209 TextRun textRun = constructTextRun(styleToUse, font, respectHyphen ? &charactersWithHyphen : 0);
525 RenderStyle* styleToUse = rendererToUse->style(isFirstLineStyle());
527 adjustedPaintOffset.move(0, styleToUse->isHorizontalWritingMode() ? 0 : -logicalHeight());
533 RenderCombineText* combinedText = styleToUse->hasTextCombine() && textRenderer()->isCombineText() && toRenderCombineText(textRenderer())->isCombined() ? toRenderCombineText(textRenderer()) : 0;
547 float textStrokeWidth = styleToUse->textStrokeWidth();
550 const ShadowData* textShadow = (context->printing() || paintInfo.forceBlackText()) ? 0 : styleToUse->textShadow();
557 textFillColor = rendererToUse->resolveColor(styleToUse, CSSPropertyWebkitTextFillColor);
561 if (styleToUse->printColorAdjust() == PrintColorAdjustEconomy
    [all...]
RenderBox.h 264 const RenderStyle* styleToUse = overrideStyle ? overrideStyle : style();
265 return m_marginBox.start(styleToUse->writingMode(), styleToUse->direction());
269 const RenderStyle* styleToUse = overrideStyle ? overrideStyle : style();
270 return m_marginBox.end(styleToUse->writingMode(), styleToUse->direction());
276 const RenderStyle* styleToUse = overrideStyle ? overrideStyle : style();
277 m_marginBox.setStart(styleToUse->writingMode(), styleToUse->direction(), value);
281 const RenderStyle* styleToUse = overrideStyle ? overrideStyle : style()
    [all...]
RenderInline.cpp     [all...]
RenderText.cpp     [all...]
RenderBoxModelObject.cpp 185 RenderStyle* styleToUse = style();
186 setHasBoxDecorations(hasBackground() || styleToUse->hasBorder() || styleToUse->hasAppearance() || styleToUse->boxShadow());
187 setInline(styleToUse->isDisplayInlineType());
188 setPositionState(styleToUse->position());
189 setHorizontalWritingMode(styleToUse->isHorizontalWritingMode());
    [all...]
RenderObject.cpp     [all...]
RenderBlockLineLayout.cpp     [all...]
RenderBox.cpp 346 RenderStyle* styleToUse = style();
354 setFloating(!isOutOfFlowPositioned() && styleToUse->isFloating());
357 if (styleToUse->overflowX() != OVISIBLE && !isRootObject && isRenderBlock()) {
380 setHasTransform(styleToUse->hasTransformRelatedProperty());
381 setHasReflection(styleToUse->boxReflect());
539 RenderStyle* styleToUse = style();
540 if (!styleToUse->logicalMaxWidth().isUndefined())
541 logicalWidth = min(logicalWidth, computeLogicalWidthInRegionUsing(MaxSize, styleToUse->logicalMaxWidth(), availableWidth, cb, region, offsetFromLogicalTopOfFirstPage));
542 return max(logicalWidth, computeLogicalWidthInRegionUsing(MinSize, styleToUse->logicalMinWidth(), availableWidth, cb, region, offsetFromLogicalTopOfFirstPage));
547 RenderStyle* styleToUse = style()
    [all...]
RenderBlock.cpp     [all...]

Completed in 896 milliseconds