Home
last modified time | relevance | path

Searched refs:longhandProperties (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DStylesSidebarPane.js1151 var longhandProperties = this.styleRule.style.longhandProperties(propertyName);
1152 for (var j = 0; j < longhandProperties.length; ++j) {
1153 var individualProperty = longhandProperties[j];
2318 var longhandProperties = this.style.longhandProperties(this.name);
2319 for (var i = 0; i < longhandProperties.length; ++i) {
2320 var name = longhandProperties[i].name;
DCSSStyleModel.js866 longhandProperties: function(name) method in WebInspector.CSSStyleDeclaration
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleSheet.h152 Vector<String> longhandProperties(const String& shorthandProperty) const;
DInspectorStyleSheet.cpp851 Vector<String> InspectorStyle::longhandProperties(const String& shorthandProperty) const in longhandProperties() function in WebCore::InspectorStyle