Searched defs:renderStyle (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNodeRenderStyle.h36 inline RenderStyle* Node::renderStyle() const function in class:blink::Node
51 return parent ? parent->renderStyle() : 0;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DMatchedPropertiesCache.h44 RefPtr<RenderStyle> renderStyle; member in class:blink::FINAL
H A DStyleResourceLoader.cpp48 void StyleResourceLoader::loadPendingSVGDocuments(RenderStyle* renderStyle, ElementStyleResources& elementStyleResources) argument
50 if (!renderStyle->hasFilter() || elementStyleResources.pendingSVGDocuments().isEmpty())
53 Vector<RefPtr<FilterOperation> >& filterOperations = renderStyle->mutableFilter().operations();
100 void StyleResourceLoader::loadPendingShapeImage(RenderStyle* renderStyle, ShapeValue* shapeValue, float deviceScaleFactor) argument
202 void StyleResourceLoader::loadPendingResources(RenderStyle* renderStyle, ElementStyleResources& elementStyleResources) argument
205 loadPendingImages(renderStyle, elementStyleResources);
208 loadPendingSVGDocuments(renderStyle, elementStyleResources);
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXTable.cpp240 RenderStyle* renderStyle = cell->style(); local
241 if (!renderStyle)
245 if (renderStyle->emptyCells() == HIDE)
266 Color cellColor = renderStyle->visitedDependentColor(CSSPropertyBackgroundColor);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditingStyle.cpp475 RenderStyle* renderStyle = node->computedStyle(); local
476 removeTextFillAndStrokeColorsIfNeeded(renderStyle);
477 replaceFontSizeByKeywordIfPossible(renderStyle, computedStyleAtPosition.get());
484 void EditingStyle::removeTextFillAndStrokeColorsIfNeeded(RenderStyle* renderStyle) argument
489 if (renderStyle->textFillColor().isCurrentColor())
491 if (renderStyle->textStrokeColor().isCurrentColor())
503 void EditingStyle::replaceFontSizeByKeywordIfPossible(RenderStyle* renderStyle, CSSComputedStyleDeclaration* computedStyle) argument
505 ASSERT(renderStyle);
506 if (renderStyle->fontDescription().keywordSize())
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlockFlow.cpp785 static inline LayoutUnit calculateMinimumPageHeight(RenderStyle* renderStyle, RootInlineBox* lastLine, LayoutUnit lineTop, LayoutUnit lineBottom) argument
789 unsigned lineCount = std::max<unsigned>(renderStyle->hasAutoOrphans() ? 1 : renderStyle->orphans(), renderStyle->hasAutoWidows() ? 1 : renderStyle->widows());

Completed in 213 milliseconds