Home | History | Annotate | Download | only in elements

Lines Matching refs:editable

527                 styleRules.push({ style: rule.style, selectorText: rule.selectorText, media: rule.media, sourceURL: rule.resourceURL(), rule: rule, editable: !!(rule.style && rule.style.styleSheetId) });
554 var styleRule = { section: section, style: section.styleRule.style, computedStyle: section.computedStyle, rule: section.rule, editable: !!(section.styleRule.style && section.styleRule.style.styleSheetId),
572 var attrStyle = { style: styles.attributesStyle, editable: false };
577 styleRules.push({ computedStyle: true, selectorText: "", style: nodeComputedStyle, editable: false });
597 styleRules.push({ style: rule.style, selectorText: rule.selectorText, media: rule.media, sourceURL: rule.resourceURL(), rule: rule, editable: !!(rule.style && rule.style.styleSheetId) });
637 styleRules.push({ style: rule.style, selectorText: rule.selectorText, media: rule.media, sourceURL: rule.resourceURL(), rule: rule, isInherited: true, parentNode: parentNode, editable: !!(rule.style && rule.style.styleSheetId) });
750 // Default editable to true if it was omitted.
751 var editable = styleRule.editable;
752 if (typeof editable === "undefined")
753 editable = true;
758 var section = new WebInspector.StylePropertiesSection(this, styleRule, editable, styleRule.isInherited);
1078 * @param {boolean} editable
1081 WebInspector.StylePropertiesSection = function(parentPane, styleRule, editable, isInherited)
1088 this.editable = editable;
1118 this.editable = false;
1144 if (!this.editable)
1289 } while (curSection && !curSection.editable);
1293 while (curSection && !curSection.editable)
1297 return (curSection && curSection.editable) ? curSection : null;
1308 } while (curSection && !curSection.editable);
1312 while (curSection && !curSection.editable)
1316 return (curSection && curSection.editable) ? curSection : null;
1351 var styleHasEditableSource = this.editable && !!style.range;
1486 if (this._checkWillCancelEditing() || !this.editable)
1549 if (!this.editable)
1581 if (!this.editable)
2230 var isEditable = !!(this._styleRule && this._styleRule.editable !== false); // |editable| is true by default.
2648 if (!section || !section.editable)
2704 if (section && !section.editable)
3058 // Create a new attribute in this section (or move to next editable selector if possible).