Home | History | Annotate | Download | only in front-end

Lines Matching refs:inherited

405             this.element.addStyleClass("show-inherited");
416 computedStyleSection.element.addStyleClass("show-inherited");
418 computedStyleSection.element.removeStyleClass("show-inherited");
425 showInheritedLabel.appendChild(document.createTextNode(WebInspector.UIString("Show inherited")));
574 var inherited = this.isPropertyInherited(name);
577 var item = new WebInspector.StylePropertyTreeElement(this.styleRule, style, name, isShorthand, inherited, overloaded, disabled);
778 WebInspector.StylePropertyTreeElement = function(styleRule, style, name, shorthand, inherited, overloaded, disabled)
784 this._inherited = inherited;
793 get inherited()
798 set inherited(x)
1074 if (this.inherited)
1075 this.listItemElement.addStyleClass("inherited");
1077 this.listItemElement.removeStyleClass("inherited");
1101 var inherited = this.treeOutline.section.isPropertyInherited(name);
1105 var item = new WebInspector.StylePropertyTreeElement(this._styleRule, this.style, name, false, inherited, overloaded);