Searched defs:computedStyle (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
H A DMetricsSidebarPane.js152 _getBox: function(computedStyle, componentName)
155 var left = this._getPropertyValueAsPx(computedStyle, componentName + "-left" + suffix);
156 var top = this._getPropertyValueAsPx(computedStyle, componentName + "-top" + suffix);
157 var right = this._getPropertyValueAsPx(computedStyle, componentName + "-right" + suffix);
158 var bottom = this._getPropertyValueAsPx(computedStyle, componentName + "-bottom" + suffix);
346 startEditing: function(targetElement, box, styleProperty, computedStyle)
351 var context = { box: box, styleProperty: styleProperty, computedStyle: computedStyle };
438 var computedStyle = context.computedStyle; variable
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElementRareData.h83 RenderStyle* computedStyle() const { return m_computedStyle.get(); } function in class:blink::ElementRareData
84 void setComputedStyle(PassRefPtr<RenderStyle> computedStyle) { m_computedStyle = computedStyle; } argument
H A DPosition.cpp287 PassRefPtrWillBeRawPtr<CSSComputedStyleDeclaration> Position::computedStyle() const function in class:blink::Position
H A DNode.h537 RenderStyle* computedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) { return virtualComputedStyle(pseudoElementSpecifier); } function in class:blink::Node
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElement.cpp936 RenderStyle* SVGElement::computedStyle(PseudoId pseudoElementSpecifier) function in class:blink::SVGElement
939 return Element::computedStyle(pseudoElementSpecifier);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditingStyle.cpp474 if (node && node->computedStyle()) {
475 RenderStyle* renderStyle = node->computedStyle();
503 void EditingStyle::replaceFontSizeByKeywordIfPossible(RenderStyle* renderStyle, CSSComputedStyleDeclaration* computedStyle) argument
507 m_mutableStyle->setProperty(CSSPropertyFontSize, computedStyle->getFontSizeCSSValuePreferringKeyword()->cssText());
953 // which one of editingStyleAtPosition or computedStyle is called.
1205 RefPtrWillBeRawPtr<EditingStyle> computedStyle = EditingStyle::create(context, EditingPropertiesInEffect); local
1206 if (computedStyle->m_mutableStyle) {
1207 if (!computedStyle->m_mutableStyle->getPropertyCSSValue(CSSPropertyBackgroundColor))
1208 computedStyle->m_mutableStyle->setProperty(CSSPropertyBackgroundColor, CSSValueTransparent);
1210 removePropertiesInStyle(computedStyle
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp1955 if (RenderStyle* computedStyle = canvas()->computedStyle()) {
1956 FontDescription elementFontDescription(computedStyle->fontDescription());
2029 inline TextDirection CanvasRenderingContext2D::toTextDirection(Direction direction, RenderStyle** computedStyle) const
2031 RenderStyle* style = (computedStyle || direction == DirectionInherit) ? canvas()->computedStyle() : nullptr;
2032 if (computedStyle)
2033 *computedStyle = style;
2170 RenderStyle* computedStyle; local
2171 TextDirection direction = toTextDirection(state().m_direction, &computedStyle);
[all...]

Completed in 202 milliseconds