Searched refs:propertyText (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorStyleTextEditor.cpp | 42 void InspectorStyleTextEditor::insertProperty(unsigned index, const String& propertyText) in insertProperty() argument 67 String textToSet = propertyText; in insertProperty()
|
D | InspectorStyleTextEditor.h | 45 void insertProperty(unsigned index, const String& propertyText);
|
D | InspectorStyleSheet.cpp | 535 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()
|
D | InspectorStyleSheet.h | 122 bool verifyPropertyText(const String& propertyText, bool canOmitSemicolon);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/ |
D | StylesSidebarPane.js | 2318 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 …]
|
D | MetricsSidebarPane.js | 411 …Properties[this.originalPropertyData.index].setText(this.originalPropertyData.propertyText, false);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
D | CSSStyleModel.js | 1140 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/ |
D | profiler.js | 2188 var propertyText = getTextValueForProperty(k, x[k]); 2189 if (propertyText.toLowerCase().indexOf(searchStr) != -1)
|