Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleTextEditor.cpp42 void InspectorStyleTextEditor::insertProperty(unsigned index, const String& propertyText) in insertProperty() argument
67 String textToSet = propertyText; in insertProperty()
DInspectorStyleTextEditor.h45 void insertProperty(unsigned index, const String& propertyText);
DInspectorStyleSheet.cpp535 bool InspectorStyle::verifyPropertyText(const String& propertyText, bool canOmitSemicolon) in verifyPropertyText() argument
541 …String declarationText = propertyText + (canOmitSemicolon ? ";" : " ") + bogusPropertyName + ": no… in verifyPropertyText()
558 bool InspectorStyle::setPropertyText(unsigned index, const String& propertyText, bool overwrite, Ex… in setPropertyText() argument
567 if (!propertyText.stripWhiteSpace().isEmpty()) { in setPropertyText()
568 if (!verifyPropertyText(propertyText, false) && !verifyPropertyText(propertyText, true)) { in setPropertyText()
569 …exceptionState.throwDOMException(SyntaxError, "The property '" + propertyText + "' could not be se… in setPropertyText()
576 …exceptionState.throwDOMException(NotFoundError, "The property '" + propertyText + "' could not be … in setPropertyText()
583 …exceptionState.throwDOMException(NotFoundError, "The property '" + propertyText + "' could not be … in setPropertyText()
596 editor.replaceProperty(index, propertyText); in setPropertyText()
598 editor.insertProperty(index, propertyText); in setPropertyText()
DInspectorStyleSheet.h122 bool verifyPropertyText(const String& propertyText, bool canOmitSemicolon);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
DStylesSidebarPane.js2318 nameElement.title = this.property.propertyText;
2470 …var propertyText = !commitEdit && this.originalPropertyText ? this.originalPropertyText : (nameEle…
2471 this.applyStyleText(propertyText, true, true, false);
2505 this.originalPropertyText = this.property.propertyText;
3223 var propertyText;
3225 propertyText = "";
3228 propertyText = userInput + ": " + this.property.value;
3230 propertyText = this.property.name + ": " + userInput;
3232 this.applyStyleText(propertyText, true, true, false);
3322 …return typeof this.originalPropertyText === "string" || (!!this.property.propertyText && this._new…
[all …]
DMetricsSidebarPane.js411 …Properties[this.originalPropertyData.index].setText(this.originalPropertyData.propertyText, false);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DCSSStyleModel.js1140 get propertyText() getter in WebInspector.CSSProperty
1176 setText: function(propertyText, majorChange, overwrite, userCallback) argument
1201 if (newProperty && this.disabled && !propertyText.match(/^\s*$/)) {
1223 …ownerStyle.styleSheetId, overwrite ? range : range.collapseToStart(), propertyText, callback.bind(…
/external/chromium_org/chrome/browser/resources/profiler/
Dprofiler.js2188 var propertyText = getTextValueForProperty(k, x[k]);
2189 if (propertyText.toLowerCase().indexOf(searchStr) != -1)