Home
last modified time | relevance | path

Searched refs:styleText (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleTextEditor.h44 …(WillBeHeapVector<InspectorStyleProperty>* allProperties, const String& styleText, const SourceRan…
47 const String& styleText() const { return m_styleText; } in styleText() function
DInspectorStyleTextEditor.cpp34 …(WillBeHeapVector<InspectorStyleProperty>* allProperties, const String& styleText, const SourceRan… in InspectorStyleTextEditor() argument
36 , m_styleText(styleText) in InspectorStyleTextEditor()
DInspectorStyleSheet.h114 bool styleText(String* result) const;
DInspectorStyleSheet.cpp581 bool success = styleText(&text); in setPropertyText()
601 return m_parentStyleSheet->setStyleText(m_styleId, editor.styleText()); in setPropertyText()
604 bool InspectorStyle::styleText(String* result) const in styleText() function in blink::InspectorStyle
840 return inspectorStyle->styleText(text); in getStyleText()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
DStylesSidebarPane.js3335 applyStyleText: function(styleText, updateInterface, majorChange, isRevert) argument
3337 …this._applyStyleThrottler.schedule(this._innerApplyStyleText.bind(this, styleText, updateInterface…
3347 …_innerApplyStyleText: function(styleText, updateInterface, majorChange, isRevert, finishedCallback) argument
3371 styleText = styleText.replace(/\s/g, " ").trim(); // Replace &nbsp; with whitespace.
3372 var styleTextLength = styleText.length;
3422 if (styleText.length && !/;\s*$/.test(styleText))
3423 styleText += ";";
3426 if (overwriteProperty && styleText === this.property.propertyText)
3429 this.property.setText(styleText, majorChange, overwriteProperty, boundCallback);
/external/chromium_org/third_party/WebKit/Source/core/editing/
DReplaceSelectionCommand.cpp758 String styleText = styleAtInsertionPos->style()->asText(); in handleStyleSpansBeforeInsertion() local
762 if (styleText != wrappingStyleSpan->getAttribute(styleAttr)) in handleStyleSpansBeforeInsertion()