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.h41 …InspectorStyleTextEditor(Vector<InspectorStyleProperty>* allProperties,const String& styleText, co…
47 const String& styleText() const { return m_styleText; } in styleText() function
DInspectorStyleTextEditor.cpp34 …TextEditor(Vector<InspectorStyleProperty>* allProperties, const String& styleText, const NewLineAn… in InspectorStyleTextEditor() argument
36 , m_styleText(styleText) in InspectorStyleTextEditor()
DInspectorStyleSheet.cpp580 bool success = styleText(&text); in setPropertyText()
600 return applyStyleText(editor.styleText()); in setPropertyText()
618 bool success = styleText(&text); in toggleProperty()
641 return applyStyleText(editor.styleText()); in toggleProperty()
644 bool InspectorStyle::styleText(String* result) const in styleText() function in WebCore::InspectorStyle
667 bool isStyleTextKnown = styleText(&styleDeclaration); in populateAllProperties()
883 bool success = styleText(&text); in newLineAndWhitespaceDelimiters()
1331 bool success = inspectorStyle->styleText(oldText); in setStyleText()
DInspectorStyleSheet.h141 bool styleText(String* result) const;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DStylesSidebarPane.js2838 applyStyleText: function(styleText, updateInterface, majorChange, isRevert) argument
2857 styleText = styleText.replace(/\s/g, " ").trim(); // Replace &nbsp; with whitespace.
2858 var styleTextLength = styleText.length;
2907 if (styleText.length && !/;\s*$/.test(styleText))
2908 styleText += ";";
2910 …this.property.setText(styleText, majorChange, overwriteProperty, callback.bind(this, userOperation…
/external/chromium_org/third_party/WebKit/Source/core/editing/
DReplaceSelectionCommand.cpp733 String styleText = styleAtInsertionPos->style()->asText(); in handleStyleSpansBeforeInsertion() local
737 if (styleText != toElement(wrappingStyleSpan)->getAttribute(styleAttr)) in handleStyleSpansBeforeInsertion()