Lines Matching refs:propName

600 this.getCSSKeywordsByProperty=function(propName){if(!cssKeywordMap){cssKeywordMap={};
608 }}return propName in cssKeywordMap?cssKeywordMap[propName]:[]
1329 this.isDOMMember=function(object,propName){var members=this.getDOMMembers(object);
1330 return members&&propName in members
2194 if(isIE){var propName,cssValue;
2198 i++){propName=name+sufix;
2199 cssValue=el.currentStyle[propName]||el.style[propName];
2202 }else{result[i]=this.getMeasurementInPixels(el,propName)
3760 }else{if(name.indexOf("_")==0){var propName=name.substr(1);
3762 }this.props[propName]=val
4993 var updateSelfProperties=function(){if(supportsXHRIterator){for(var propName in xhrRequest){if(propName in updateSelfPropertiesIgnore){continue
4994 }try{var propValue=xhrRequest[propName];
4995 if(propValue&&!isFunction(propValue)){self[propName]=propValue
5002 var updateXHRProperties=function(){for(var propName in self){if(propName in updateXHRPropertiesIgnore){continue
5003 }try{var propValue=self[propName];
5004 if(propValue&&!xhrRequest[propName]){xhrRequest[propName]=propValue
5079 for(var propName in xhrRequest){numberOfXHRProperties++;
5080 if(propName in updateSelfPropertiesIgnore){continue
5081 }try{var propValue=xhrRequest[propName];
5082 if(isFunction(propValue)){if(typeof self[propName]=="undefined"){this[propName]=(function(name,xhr){return supportsApply?function(){return xhr[name].apply(xhr,arguments)
5085 })(propName,xhrRequest)
5086 }}else{this[propName]=propValue
7098 },setProperty:function(rule,propName,propValue,propPriority){var style=rule.style||rule;
7100 if(style.getPropertyValue){var prevValue=style.getPropertyValue(propName);
7101 var prevPriority=style.getPropertyPriority(propName);
7102 style.removeProperty(propName);
7103 style.setProperty(propName,propValue,propPriority)
7104 }else{style[toCamelCase(propName)]=propValue
7105 }if(propName){dispatch(this.fbListeners,"onCSSSetProperty",[style,propName,propValue,propPriority,prevValue,prevPriority,rule,baseText])
7106 }},removeProperty:function(rule,propName,parent){var style=rule.style||rule;
7108 if(style.getPropertyValue){var prevValue=style.getPropertyValue(propName);
7109 var prevPriority=style.getPropertyPriority(propName);
7110 style.removeProperty(propName)
7111 }else{style[toCamelCase(propName)]=""
7112 }if(propName){dispatch(this.fbListeners,"onCSSRemoveProperty",[style,propName,prevValue,prevPriority,rule,baseText])
7155 while(index--){var propName=style.item(count-index);
7156 this.addProperty(propName,style.getPropertyValue(propName),!!style.getPropertyPriority(propName),false,inheritMode,props)
7209 var propName=getChildByClass(row,"cssPropName")[textContent];
7210 Firebug.CSSModule.removeProperty(rule,propName);
7215 ++i){if(map[i].name==propName){map.splice(i,1);
7222 var propName=getChildByClass(row,"cssPropName")[textContent];
7229 if(hasClass(row,"disabledStyle")){Firebug.CSSModule.removeProperty(rule,propName);
7230 map.push({name:propName,value:parsedValue.value,important:parsedValue.priority})
7231 }else{Firebug.CSSModule.setProperty(rule,propName,parsedValue.value,parsedValue.priority);
7232 var index=findPropByName(map,propName);
7331 if(propRow){var propName=getChildByClass(propRow,"cssPropName")[textContent];
7333 items.push({label:$STRF("EditProp",[propName]),nol10n:true,command:bindFixed(this.editPropertyRow,this,propRow)},{label:$STRF("DeleteProp",[propName]),nol10n:true,command:bindFixed(this.deletePropertyRow,this,propRow)},{label:$STRF("DisableProp",[propName]),nol10n:true,type:"checkbox",checked:isDisabled,command:bindFixed(this.disablePropertyRow,this,propRow)})
7505 ++i){var propName=props[i];
7506 var propValue=style.getPropertyValue?style.getPropertyValue(propName):""+style[toCamelCase(propName)];
7509 if(propValue){group.props.push({name:propName,value:propValue})
7530 }}}else{if(getAncestorByClass(target,"cssPropValue")){var propName=getChildByClass(row,"cssPropName")[textContent];
7532 if(FBTrace.DBG_CSS){FBTrace.sysout("CSSEditor.saveEdit propName=propValue: "+propName+" = "+propValue+"\n")
7534 Firebug.CSSModule.setProperty(rule,propName,parsedValue.value,parsedValue.priority)
7535 }else{if(previousValue&&previousValue!="null"){Firebug.CSSModule.removeProperty(rule,propName)
7542 var propName=getChildByClass(row,"cssPropName")[textContent];
7543 return getCSSKeywordsByProperty(propName)
7886 if(object){var propName=getRowName(row);
7887 if(object instanceof jsdIStackFrame){return Firebug.Debugger.evaluate(propName,this.context)
7888 }else{return object[propName]