Home
last modified time | relevance | path

Searched refs:longhands (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSShorthands.in1 // This file contains all the mapping shorthands <-> longhands and generate
3 // followed by the longhands associated to the shorthand.
6 animation longhands=animation-name;animation-duration;animation-timing-function;animation-delay;ani…
7 background longhands=background-image;background-position-x;background-position-y;background-size;b…
8 background-position longhands=background-position-x;background-position-y
9 background-repeat longhands=background-repeat-x;background-repeat-y
10 border longhands=border-top-color;border-top-style;border-top-width;border-right-color;border-right…
11 border-bottom longhands=border-bottom-width;border-bottom-style;border-bottom-color
12 border-color longhands=border-top-color;border-right-color;border-bottom-color;border-left-color
13 border-image longhands=border-image-source;border-image-slice;border-image-width;border-image-outse…
[all …]
DCSSParser-in.cpp1597 const CSSPropertyID* longhands = shorthand.properties(); in addExpandedPropertyForValue() local
1599 addProperty(longhands[i], value, important); in addExpandedPropertyForValue()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DCSSMetadata.js52 var longhands = properties[i].longhands;
53 if (longhands) {
54 this._longhands[propertyName] = longhands;
55 for (var j = 0; j < longhands.length; ++j) {
56 var longhandName = longhands[j];
966 longhands: function(shorthand) method in WebInspector.CSSMetadata
DCSSStyleModel.js868 var longhands = WebInspector.CSSMetadata.cssPropertiesMetainfo.longhands(name);
870 for (var i = 0; longhands && i < longhands.length; ++i) {
871 var property = this._livePropertyMap[longhands[i]];
DStylesSidebarPane.js1233 … var isShorthand = !!WebInspector.CSSMetadata.cssPropertiesMetainfo.longhands(property.name);
1247 … var isShorthand = !!WebInspector.CSSMetadata.cssPropertiesMetainfo.longhands(property.name);
/external/chromium_org/third_party/WebKit/Source/build/scripts/
Dmake_style_shorthands.py58 longhands = property["longhands"].split(';')
60 for longhand in longhands:
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
DStylePropertyShorthand.h.tmpl74 // Returns an empty list if the property is not a shorthand, otherwise the list of longhands for pa…
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorCSSAgent.cpp1243 RefPtr<TypeBuilder::Array<String> > longhands = TypeBuilder::Array<String>::create(); in getSupportedCSSProperties() local
1246 longhands->addItem(getPropertyNameString(longhandID)); in getSupportedCSSProperties()
1248 property->setLonghands(longhands); in getSupportedCSSProperties()