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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
NodeRenderStyle.h 32 #include "core/rendering/style/RenderStyle.h"
36 inline RenderStyle* Node::renderStyle() const
48 inline RenderStyle* Node::parentRenderStyle() const
51 return parent ? parent->renderStyle() : 0;
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchedPropertiesCache.h 36 class RenderStyle;
44 RefPtr<RenderStyle> renderStyle;
45 RefPtr<RenderStyle> parentRenderStyle;
47 void set(const RenderStyle*, const RenderStyle* parentStyle, const MatchResult&);
68 void add(const RenderStyle*, const RenderStyle* parentStyle, unsigned hash, const MatchResult&);
73 static bool isCacheable(const Element*, const RenderStyle*, const RenderStyle* parentStyle)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTable.cpp 185 RenderStyle* tableStyle = table->style();
240 RenderStyle* renderStyle = cell->style();
241 if (!renderStyle)
245 if (renderStyle->emptyCells() == HIDE)
266 Color cellColor = renderStyle->visitedDependentColor(CSSPropertyBackgroundColor);
280 RenderStyle* rowRenderStyle = renderRow->style();
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 59 #include "core/rendering/style/RenderStyle.h"
475 RenderStyle* renderStyle = node->computedStyle();
476 removeTextFillAndStrokeColorsIfNeeded(renderStyle);
477 replaceFontSizeByKeywordIfPossible(renderStyle, computedStyleAtPosition.get());
484 void EditingStyle::removeTextFillAndStrokeColorsIfNeeded(RenderStyle* renderStyle)
489 if (renderStyle->textFillColor().isCurrentColor())
491 if (renderStyle->textStrokeColor().isCurrentColor())
503 void EditingStyle::replaceFontSizeByKeywordIfPossible(RenderStyle* renderStyle, CSSComputedStyleDeclaration* computedStyle
    [all...]

Completed in 171 milliseconds