Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleSheet.h150 String shorthandValue(const String& shorthandProperty) const;
151 String shorthandPriority(const String& shorthandProperty) const;
152 Vector<String> longhandProperties(const String& shorthandProperty) const;
DInspectorStyleSheet.cpp811 String InspectorStyle::shorthandValue(const String& shorthandProperty) const in shorthandValue()
813 String value = m_style->getPropertyValue(shorthandProperty); in shorthandValue()
819 if (m_style->getPropertyShorthand(individualProperty) != shorthandProperty) in shorthandValue()
836 String InspectorStyle::shorthandPriority(const String& shorthandProperty) const in shorthandPriority()
838 String priority = m_style->getPropertyPriority(shorthandProperty); in shorthandPriority()
842 if (m_style->getPropertyShorthand(individualProperty) != shorthandProperty) in shorthandPriority()
851 Vector<String> InspectorStyle::longhandProperties(const String& shorthandProperty) const in longhandProperties()
857 …ains(individualProperty) || m_style->getPropertyShorthand(individualProperty) != shorthandProperty) in longhandProperties()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DCSSStyleModel.js882 shorthandValue: function(shorthandProperty) argument
884 return this._shorthandValues[shorthandProperty];
DStylesSidebarPane.js1268 …var shorthandProperty = new WebInspector.CSSProperty(style, style.allProperties.length, shorthand,…
1270 …r.StylePropertyTreeElement(this._parentPane, this.styleRule, style, shorthandProperty, /* isShort…
1272 generatedShorthands[shorthand] = shorthandProperty;