Searched refs:getPropertyValue (Results 1 - 25 of 47) sorted by relevance

12

/external/webkit/Source/WebCore/bindings/objc/
H A DDOMCSS.mm129 return [self getPropertyValue:@"azimuth"];
139 return [self getPropertyValue:@"background"];
149 return [self getPropertyValue:@"background-attachment"];
159 return [self getPropertyValue:@"background-color"];
169 return [self getPropertyValue:@"background-image"];
179 return [self getPropertyValue:@"background-position"];
189 return [self getPropertyValue:@"background-repeat"];
199 return [self getPropertyValue:@"border"];
209 return [self getPropertyValue:@"border-collapse"];
219 return [self getPropertyValue
[all...]
/external/webkit/Source/WebCore/editing/
H A DRemoveCSSPropertyCommand.cpp46 m_oldValue = style->getPropertyValue(m_property);
H A DEditingStyle.cpp464 textDirection->m_mutableStyle->setProperty(CSSPropertyDirection, m_mutableStyle->getPropertyValue(CSSPropertyDirection),
580 extractedStyle->setProperty(propertyID, inlineStyle->getPropertyValue(propertyID), inlineStyle->getPropertyPriority(propertyID));
586 extractedStyle->setProperty(propertyID, inlineStyle->getPropertyValue(propertyID), inlineStyle->getPropertyPriority(propertyID));
823 mutableStyle->setProperty(CSSPropertyDirection, style->style()->getPropertyValue(CSSPropertyDirection));
906 m_applyFontFace = style->getPropertyValue(CSSPropertyFontFamily);
/external/webkit/Source/WebCore/inspector/front-end/
H A DMetricsSidebarPane.js66 return Number(style.getPropertyValue(propertyName).replace(/px$/, "") || 0);
89 var value = style.getPropertyValue(propertyName);
105 var width = style.getPropertyValue("width").replace(/px$/, "");
106 if (style.getPropertyValue("box-sizing") === "border-box") {
118 var height = style.getPropertyValue("height").replace(/px$/, "");
119 if (style.getPropertyValue("box-sizing") === "border-box") {
161 if (name === "margin" && noMarginDisplayType[style.getPropertyValue("display")])
163 if (name === "padding" && noPaddingDisplayType[style.getPropertyValue("display")])
165 if (name === "position" && noPositionType[style.getPropertyValue("position")])
253 if (computedStyle.getPropertyValue("bo
[all...]
H A DAuditRules.js676 if (computedStyle.getPropertyValue("position") === "absolute") {
687 if (inlineStyle.getPropertyValue("width") !== "")
689 if (inlineStyle.getPropertyValue("height") !== "")
695 if (style.getPropertyValue("width") !== "")
697 if (style.getPropertyValue("height") !== "")
/external/webkit/Source/WebCore/css/
H A DCSSStyleDeclaration.h51 String getPropertyValue(const String& propertyName);
57 virtual String getPropertyValue(int propertyID) const = 0;
H A DCSSStyleDeclaration.idl33 [ConvertNullStringTo=Null] DOMString getPropertyValue(in DOMString propertyName);
H A DCSSStyleDeclaration.cpp49 String CSSStyleDeclaration::getPropertyValue(const String &propertyName) function in class:WebCore::CSSStyleDeclaration
54 return getPropertyValue(propID);
H A DCSSComputedStyleDeclaration.h51 virtual String getPropertyValue(int propertyID) const;
H A DCSSMutableStyleDeclaration.h99 virtual String getPropertyValue(int propertyID) const;
/external/webkit/Source/WebKit/win/
H A DDOMCSSClasses.cpp99 HRESULT STDMETHODCALLTYPE DOMCSSStyleDeclaration::getPropertyValue( function in class:DOMCSSStyleDeclaration
104 WTF::String value = m_style->getPropertyValue(propertyNameString);
H A DDOMCSSClasses.h88 virtual HRESULT STDMETHODCALLTYPE getPropertyValue(
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
H A DDimResultsElement.java113 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyValue(java.lang.Object)
115 public Object getPropertyValue(Object propKey) { method in class:DimResultsElement
132 return super.getPropertyValue(propKey);
H A DScenarioResultsElement.java93 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyValue(java.lang.Object)
95 public Object getPropertyValue(Object propKey) { method in class:ScenarioResultsElement
103 return super.getPropertyValue(propKey);
H A DBuildResultsProperties.java75 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyValue(java.lang.Object)
77 public Object getPropertyValue(Object propKey) { method in class:BuildResultsProperties
H A DComponentResultsElement.java124 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyValue(java.lang.Object)
126 public Object getPropertyValue(Object propKey) { method in class:ComponentResultsElement
145 return super.getPropertyValue(propKey);
H A DBuildResultsElement.java205 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyValue(java.lang.Object)
207 public Object getPropertyValue(Object propKey) { method in class:BuildResultsElement
274 return super.getPropertyValue(propKey);
H A DConfigResultsElement.java209 * org.eclipse.ui.views.properties.IPropertySource#getPropertyValue(java.lang
212 public Object getPropertyValue(Object propKey) { method in class:ConfigResultsElement
247 return super.getPropertyValue(propKey);
/external/webkit/Source/WebCore/bindings/js/
H A DJSCSSStyleDeclarationCustom.cpp169 // it can only be accessed using getPropertyValue.
173 return StringObjectThatMasqueradesAsUndefined::create(exec, stringToUString(thisObj->impl()->getPropertyValue(prop)));
175 return jsString(exec, thisObj->impl()->getPropertyValue(prop));
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CSSStyleDeclarationCustom.cpp181 String result = imp->getPropertyValue(propInfo->propID);
/external/webkit/Source/WebKit/win/Interfaces/
H A DDOMCSS.idl138 - (NSString *)getPropertyValue:(NSString *)propertyName;
140 HRESULT getPropertyValue([in] BSTR propertyName, [out, retval] BSTR* result);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebelement.cpp854 return style->getPropertyValue(propID);
858 return style->getPropertyValue(propID);
874 return rule->style()->getPropertyValue(propID);
876 if (style->getPropertyValue(propID).isEmpty())
881 return style->getPropertyValue(propID);
894 return style->getPropertyValue(propID);
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasStyle.cpp72 CSSParser::parseColor(rgba, canvas->style()->getPropertyValue(CSSPropertyColor));
/external/webkit/Source/WebCore/svg/
H A DSVGFontFaceElement.cpp261 return m_styleDeclaration->getPropertyValue(CSSPropertyFontFamily);
/external/webkit/Source/WebCore/svg/animation/
H A DSMILTimeContainer.cpp205 baseValue = computedStyle(targetElement)->getPropertyValue(cssPropertyID(attributeName.localName()));

Completed in 293 milliseconds

12