Home | History | Annotate | Download | only in editing

Lines Matching refs:typingStyle

599         RefPtr<EditingStyle> typingStyle = m_frame->selection()->typingStyle();
601 if (typingStyle && typingStyle->textDirection(direction)) {
2812 RefPtr<EditingStyle> typingStyle;
2813 if (m_frame->selection()->typingStyle()) {
2814 typingStyle = m_frame->selection()->typingStyle()->copy();
2815 typingStyle->overrideWithStyle(style->makeMutable().get());
2817 typingStyle = EditingStyle::create(style);
2819 typingStyle->prepareToApplyAt(m_frame->selection()->selection().visibleStart().deepEquivalent(), EditingStyle::PreserveWritingDirection);
2822 RefPtr<EditingStyle> blockStyle = typingStyle->extractAndRemoveBlockProperties();
2827 m_frame->selection()->setTypingStyle(typingStyle);
2931 RefPtr<EditingStyle> typingStyle = m_frame->selection()->typingStyle();
2932 if (!typingStyle || !typingStyle->style())
2938 String styleText = typingStyle->style()->cssText() + " display: inline";