• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WebCore-7600.1.25/editing/

Lines Matching +refs:frame +refs:height

111     static void CreateAndApply(const RefPtr<Frame> frame);
127 void ClearTextCommand::CreateAndApply(const RefPtr<Frame> frame)
129 if (frame->selection().isNone())
133 frame->editor().clear();
135 const VisibleSelection oldSelection = frame->selection().selection();
136 frame->selection().selectAll();
137 RefPtr<ClearTextCommand> clearCommand = adoptRef(new ClearTextCommand(*frame->document()));
1140 Editor::Editor(Frame& frame)
1141 : m_frame(frame)
1143 , m_deleteButtonController(std::make_unique<DeleteButtonController>(frame))
1150 , m_spellChecker(std::make_unique<SpellChecker>(frame))
1151 , m_alternativeTextController(std::make_unique<AlternativeTextController>(frame))
1240 if (Frame* editedFrame = document->frame())
2792 Frame* frame = document->frame();
2793 ASSERT(frame);
2794 FrameView* frameView = frame->view();
2798 VisibleSelection selection(frame->visiblePositionForPoint(framePoint));
2984 else if (rect.height() == caretWidth)
3019 startCaretRect.height()) :
3023 startCaretRect.height() + extraWidthToEndOfLine);
3223 static bool isFrameInRange(Frame* frame, Range* range)
3226 for (HTMLFrameOwnerElement* ownerElement = frame->ownerElement(); ownerElement; ownerElement = ownerElement->document().ownerElement()) {
3646 RenderStyle* Editor::styleForSelectionStart(Frame* frame, Node *&nodeToRemove)
3650 if (frame->selection().isNone())
3653 Position position = frame->selection().selection().visibleStart().deepEquivalent();
3657 RefPtr<EditingStyle> typingStyle = frame->selection().typingStyle();
3661 RefPtr<Element> styleElement = frame->document()->createElement(spanTag, false);
3666 styleElement->appendChild(frame->document()->createEditingTextNode(""), ASSERT_NO_EXCEPTION);
3672 frame->document()->updateStyleIfNeeded();