Home
last modified time | relevance | path

Searched refs:propertyText (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleTextEditor.h42 void insertProperty(unsigned index, const String& propertyText, unsigned styleBodyLength);
DInspectorStyleTextEditor.cpp41 void InspectorStyleTextEditor::insertProperty(unsigned index, const String& propertyText, unsigned … in insertProperty() argument
65 String textToSet = propertyText; in insertProperty()
DInspectorStyleSheet.cpp541 bool InspectorStyle::setPropertyText(unsigned index, const String& propertyText, bool overwrite, St… in setPropertyText() argument
551 if (!propertyText.stripWhiteSpace().isEmpty()) { in setPropertyText()
553 String declarationText = propertyText + " " + bogusPropertyName + ": none"; in setPropertyText()
596 editor.replaceProperty(index, propertyText); in setPropertyText()
598 editor.insertProperty(index, propertyText, sourceData->ruleBodyRange.length()); in setPropertyText()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DStylesSidebarPane.js1901 nameElement.title = this.property.propertyText;
2041 …var propertyText = !commitEdit && this.originalPropertyText ? this.originalPropertyText : (nameEle…
2042 this.applyStyleText(propertyText, true, true, false);
2070 this.originalPropertyText = this.property.propertyText;
2736 var propertyText;
2738 propertyText = "";
2741 propertyText = userInput + ": " + this.property.value;
2743 propertyText = this.property.name + ": " + userInput;
2745 this.applyStyleText(propertyText, true, true, false);
2835 …return typeof this.originalPropertyText === "string" || (!!this.property.propertyText && this._new…
[all …]
DCSSStyleModel.js1151 get propertyText() getter in WebInspector.CSSProperty
1194 setText: function(propertyText, majorChange, overwrite, userCallback) argument
1216 this.text = propertyText;
1220 if (newProperty && this.disabled && !propertyText.match(/^\s*$/)) {
1241 …CSSAgent.setPropertyText(this.ownerStyle.id, this.index, propertyText, overwrite, callback.bind(th…
DMetricsSidebarPane.js379 …Properties[this.originalPropertyData.index].setText(this.originalPropertyData.propertyText, false);
/external/chromium_org/chrome/browser/resources/profiler/
Dprofiler.js2188 var propertyText = getTextValueForProperty(k, x[k]);
2189 if (propertyText.toLowerCase().indexOf(searchStr) != -1)