Lines Matching refs:inheritMode

7142 },parseCSSProps:function(style,inheritMode){var props=[];  argument
7145 …ame,style.getPropertyValue(propName),!!style.getPropertyPriority(propName),false,inheritMode,props)
7152 }if(m[2]){this.addProperty(m[1],m[2],!!m[3],false,inheritMode,props)
7154 },getRuleProperties:function(context,rule,inheritMode){var props=this.parseCSSProps(rule.style,inhe… argument
7157 this.addOldProperties(context,ruleId,inheritMode,props);
7160 },addOldProperties:function(context,ruleId,inheritMode,props){if(context.selectorMap&&context.selec… argument
7164 this.addProperty(prop.name,prop.value,prop.important,true,inheritMode,props)
7165 }}},addProperty:function(name,value,important,disabled,inheritMode,props){name=name.toLowerCase(); argument
7166 if(inheritMode&&!inheritedStyleNames[name]){return
7409 }}},getElementRules:function(element,rules,usedProps,inheritMode){var inspectedRules,displayedRules… argument
7423 }var props=this.getRuleProperties(this.context,rule,inheritMode);
7424 if(inheritMode&&!props.length){continue
7428 this.markOverridenProps(props,usedProps,inheritMode);
7429 …selector:ruleData.selector,sourceLink:sourceLink,props:props,inherited:inheritMode,isSystemSheet:i…
7430 }}if(element.style){this.getStyleProperties(element,rules,usedProps,inheritMode)
7432 }},markOverridenProps:function(props,usedProps,inheritMode){for(var i=0; argument
7442 }prop.wasInherited=inheritMode?true:false;
7444 …roperties:function(element,rules,usedProps,inheritMode){var props=this.parseCSSProps(element.style… argument
7445 this.addOldProperties(this.context,getElementXPath(element),inheritMode,props);
7447 this.markOverridenProps(props,usedProps,inheritMode);
7448 …le:element,id:getElementXPath(element),selector:"element.style",props:props,inherited:inheritMode})