HomeSort by relevance Sort by last modified time
    Searched refs:typingStyle (Results 1 - 13 of 13) sorted by null

  /external/webkit/WebCore/editing/
InsertTextCommand.cpp 193 CSSMutableStyleDeclaration* typingStyle = document()->frame()->typingStyle();
197 if (typingStyle) {
198 unicodeBidi = typingStyle->getPropertyCSSValue(CSSPropertyUnicodeBidi);
199 direction = typingStyle->getPropertyCSSValue(CSSPropertyDirection);
201 endingStyle->diff(typingStyle);
202 if (typingStyle && unicodeBidi) {
204 typingStyle->setProperty(CSSPropertyUnicodeBidi, static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent());
207 typingStyle->setProperty(CSSPropertyDirection, static_cast<CSSPrimitiveValue*>(direction.get())->getIdent());
211 if (typingStyle && typingStyle->length()
    [all...]
InsertLineBreakCommand.cpp 166 CSSMutableStyleDeclaration* typingStyle = document()->frame()->typingStyle();
168 if (typingStyle && typingStyle->length() > 0) {
173 applyStyle(typingStyle, firstDeepEditingPositionForNode(nodeToInsert.get()), lastDeepEditingPositionForNode(nodeToInsert.get()));
ApplyStyleCommand.cpp 444 CSSMutableStyleDeclaration* typingStyle = pos.node()->document()->frame()->typingStyle();
445 if (typingStyle)
446 style->merge(typingStyle);
    [all...]
Editor.cpp 490 if (CSSMutableStyleDeclaration *typingStyle = m_frame->typingStyle()) {
491 RefPtr<CSSValue> unicodeBidi = typingStyle->getPropertyCSSValue(CSSPropertyUnicodeBidi);
496 RefPtr<CSSValue> direction = typingStyle->getPropertyCSSValue(CSSPropertyDirection);
    [all...]
TypingCommand.cpp 356 if (!document()->frame()->typingStyle() && !m_commands.isEmpty()) {
  /external/webkit/WebCore/page/
Frame.h 246 CSSMutableStyleDeclaration* typingStyle() const;
Frame.cpp 901 CSSMutableStyleDeclaration *Frame::typingStyle() const
925 if (typingStyle()) {
926 typingStyle()->merge(mutableStyle.get());
927 mutableStyle = typingStyle();
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebView.h 710 - (DOMCSSStyleDeclaration *)typingStyle;
WebFrame.mm     [all...]
WebView.mm     [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebView.idl     [all...]
  /external/webkit/WebKit/win/
WebView.h 394 virtual HRESULT STDMETHODCALLTYPE typingStyle(
    [all...]
WebView.cpp     [all...]

Completed in 245 milliseconds