Lines Matching refs:property

34 function _wrapDefault(name, property, compactable) {  argument
67 function animation(property, compactable, validator) { argument
68 var duration = _wrapDefault(property.name + '-duration', property, compactable);
69 var timing = _wrapDefault(property.name + '-timing-function', property, compactable);
70 var delay = _wrapDefault(property.name + '-delay', property, compactable);
71 var iteration = _wrapDefault(property.name + '-iteration-count', property, compactable);
72 var direction = _wrapDefault(property.name + '-direction', property, compactable);
73 var fill = _wrapDefault(property.name + '-fill-mode', property, compactable);
74 var play = _wrapDefault(property.name + '-play-state', property, compactable);
75 var name = _wrapDefault(property.name + '-name', property, compactable);
77 var values = property.value;
90 if (property.value.length == 1 && property.value[0][1] == 'inherit') {
91 ….value = iteration.value = direction.value = fill.value = play.value = name.value = property.value;
134 function background(property, compactable, validator) { argument
135 var image = _wrapDefault('background-image', property, compactable);
136 var position = _wrapDefault('background-position', property, compactable);
137 var size = _wrapDefault('background-size', property, compactable);
138 var repeat = _wrapDefault('background-repeat', property, compactable);
139 var attachment = _wrapDefault('background-attachment', property, compactable);
140 var origin = _wrapDefault('background-origin', property, compactable);
141 var clip = _wrapDefault('background-clip', property, compactable);
142 var color = _wrapDefault('background-color', property, compactable);
144 var values = property.value;
153 if (property.value.length == 1 && property.value[0][1] == 'inherit') {
155 …e.value = repeat.value = position.value = size.value = origin.value = clip.value = property.value;
159 if (property.value.length == 1 && property.value[0][1] == '0 0') {
229 function borderRadius(property, compactable) { argument
230 var values = property.value;
244 var target = _wrapDefault(property.name, property, compactable);
250 var remainder = _wrapDefault(property.name, property, compactable);
264 function font(property, compactable, validator) { argument
265 var style = _wrapDefault('font-style', property, compactable);
266 var variant = _wrapDefault('font-variant', property, compactable);
267 var weight = _wrapDefault('font-weight', property, compactable);
268 var stretch = _wrapDefault('font-stretch', property, compactable);
269 var size = _wrapDefault('font-size', property, compactable);
270 var height = _wrapDefault('line-height', property, compactable);
271 var family = _wrapDefault('font-family', property, compactable);
273 var values = property.value;
288 …throw new InvalidPropertyError('Missing font values at ' + formatPosition(property.all[property.po…
303 …throw new InvalidPropertyError('Invalid font values at ' + formatPosition(property.all[property.po…
414 function fourValues(property, compactable) { argument
415 var componentNames = compactable[property.name].components;
417 var value = property.value;
442 return function (property, compactable, validator) { argument
444 var values = property.value;
454 return splitWith(property, compactable, validator);
463 var _property = _wrapDefault(property.name, property, compactable);
485 function listStyle(property, compactable, validator) { argument
486 var type = _wrapDefault('list-style-type', property, compactable);
487 var position = _wrapDefault('list-style-position', property, compactable);
488 var image = _wrapDefault('list-style-image', property, compactable);
491 if (property.value.length == 1 && property.value[0][1] == 'inherit') {
492 type.value = position.value = image.value = [property.value[0]];
496 var values = property.value.slice(0);
526 function transition(property, compactable, validator) { argument
527 var prop = _wrapDefault(property.name + '-property', property, compactable);
528 var duration = _wrapDefault(property.name + '-duration', property, compactable);
529 var timing = _wrapDefault(property.name + '-timing-function', property, compactable);
530 var delay = _wrapDefault(property.name + '-delay', property, compactable);
532 var values = property.value;
541 if (property.value.length == 1 && property.value[0][1] == 'inherit') {
542 prop.value = duration.value = timing.value = delay.value = property.value;
573 function widthStyleColor(property, compactable, validator) { argument
574 var descriptor = compactable[property.name];
576 _wrapDefault(descriptor.components[0], property, compactable),
577 _wrapDefault(descriptor.components[1], property, compactable),
578 _wrapDefault(descriptor.components[2], property, compactable)
593 if ((property.value.length == 1 && property.value[0][1] == 'inherit') ||
594 …(property.value.length == 3 && property.value[0][1] == 'inherit' && property.value[1][1] == 'inher…
595 color.value = style.value = width.value = [property.value[0]];
599 var values = property.value.slice(0);