Searched refs:longhands (Results 1 – 8 of 8) sorted by relevance
1 // This file contains all the mapping shorthands <-> longhands and generate3 // 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-y9 background-repeat longhands=background-repeat-x;background-repeat-y10 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-color12 border-color longhands=border-top-color;border-right-color;border-bottom-color;border-left-color13 border-image longhands=border-image-source;border-image-slice;border-image-width;border-image-outse…[all …]
1597 const CSSPropertyID* longhands = shorthand.properties(); in addExpandedPropertyForValue() local1599 addProperty(longhands[i], value, important); in addExpandedPropertyForValue()
52 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
868 var longhands = WebInspector.CSSMetadata.cssPropertiesMetainfo.longhands(name);870 for (var i = 0; longhands && i < longhands.length; ++i) {871 var property = this._livePropertyMap[longhands[i]];
1233 … var isShorthand = !!WebInspector.CSSMetadata.cssPropertiesMetainfo.longhands(property.name);1247 … var isShorthand = !!WebInspector.CSSMetadata.cssPropertiesMetainfo.longhands(property.name);
58 longhands = property["longhands"].split(';')60 for longhand in longhands:
74 // Returns an empty list if the property is not a shorthand, otherwise the list of longhands for pa…
1243 RefPtr<TypeBuilder::Array<String> > longhands = TypeBuilder::Array<String>::create(); in getSupportedCSSProperties() local1246 longhands->addItem(getPropertyNameString(longhandID)); in getSupportedCSSProperties()1248 property->setLonghands(longhands); in getSupportedCSSProperties()