isContentEditable 565 Source/core/dom/Node.cpp return isContentEditable(UserSelectAllIsAlwaysNonEditable); isContentEditable 2314 Source/core/dom/Node.cpp return isContentEditable(UserSelectAllIsAlwaysNonEditable) || hasEventListeners(EventTypeNames::mouseup) || hasEventListeners(EventTypeNames::mousedown) || hasEventListeners(EventTypeNames::click) || hasEventListeners(EventTypeNames::DOMActivate); isContentEditable 407 Source/core/dom/Node.h bool isContentEditable(UserSelectAllTreatment = UserSelectAllDoesNotAffectEditability); isContentEditable 890 Source/core/editing/ApplyStyleCommand.cpp if (!element->parentNode() || !element->parentNode()->isContentEditable(Node::UserSelectAllIsAlwaysNonEditable)) isContentEditable 1341 Source/core/editing/ApplyStyleCommand.cpp if (node->isContentEditable(Node::UserSelectAllIsAlwaysNonEditable)) { isContentEditable 196 Source/core/editing/Caret.cpp bool CaretBase::shouldRepaintCaret(const RenderView* view, bool isContentEditable) const isContentEditable 204 Source/core/editing/Caret.cpp return (caretBrowsing || isContentEditable); isContentEditable 226 Source/core/editing/Caret.cpp if (shouldRepaintCaret(view, node->isContentEditable(Node::UserSelectAllIsAlwaysNonEditable))) isContentEditable 52 Source/core/editing/Caret.h bool shouldRepaintCaret(const RenderView*, bool isContentEditable) const; isContentEditable 83 Source/core/editing/Caret.h bool isContentEditable() const { return m_position.rootEditableElement(); } isContentEditable 51 Source/core/editing/DeleteFromTextNodeCommand.cpp if (!m_node->isContentEditable(Node::UserSelectAllIsAlwaysNonEditable)) isContentEditable 488 Source/core/editing/Editor.cpp if (m_frame.selection().isNone() || !m_frame.selection().isContentEditable() || !fragment) isContentEditable 785 Source/core/editing/Editor.cpp if (!selection.isContentEditable()) isContentEditable 794 Source/core/editing/Editor.cpp if (selection.isContentEditable()) { isContentEditable 1191 Source/core/editing/EditorCommand.cpp return (selection.isCaret() && selection.isContentEditable()) || selection.isRange(); isContentEditable 1210 Source/core/editing/EditorCommand.cpp return ((selection.isCaret() && selection.isContentEditable()) || selection.isRange()) isContentEditable 1217 Source/core/editing/EditorCommand.cpp return selection.isCaret() && selection.isContentEditable(); isContentEditable 1268 Source/core/editing/EditorCommand.cpp return frame.selection().isRange() && frame.selection().isContentEditable(); isContentEditable 1421 Source/core/editing/EditorCommand.cpp if (!selection.isNonOrphanedCaretOrRange() || !selection.isContentEditable()) isContentEditable 1259 Source/core/editing/FrameSelection.cpp if (m_previousCaretNode && shouldRepaintCaret(view, m_previousCaretNode->isContentEditable())) isContentEditable 1263 Source/core/editing/FrameSelection.cpp if (shouldRepaintCaret(view, isContentEditable())) isContentEditable 1375 Source/core/editing/FrameSelection.cpp if (isContentEditable()) { isContentEditable 88 Source/core/editing/FrameSelection.h bool isContentEditable() const { return m_selection.isContentEditable(); } isContentEditable 77 Source/core/editing/InputMethodController.cpp return m_compositionNode && m_compositionNode->isContentEditable(); isContentEditable 52 Source/core/editing/InsertNodeBeforeCommand.cpp if (!parent || (m_shouldAssumeContentIsAlwaysEditable == DoNotAssumeContentIsAlwaysEditable && !parent->isContentEditable(Node::UserSelectAllIsAlwaysNonEditable))) isContentEditable 54 Source/core/editing/InsertNodeBeforeCommand.cpp ASSERT(parent->isContentEditable(Node::UserSelectAllIsAlwaysNonEditable)); isContentEditable 61 Source/core/editing/InsertNodeBeforeCommand.cpp if (!m_insertChild->isContentEditable(Node::UserSelectAllIsAlwaysNonEditable)) isContentEditable 48 Source/core/editing/RemoveNodeCommand.cpp && !parent->isContentEditable(Node::UserSelectAllIsAlwaysNonEditable) && parent->inActiveDocument())) isContentEditable 50 Source/core/editing/RemoveNodeCommand.cpp ASSERT(parent->isContentEditable(Node::UserSelectAllIsAlwaysNonEditable) || !parent->inActiveDocument()); isContentEditable 721 Source/core/editing/SpellChecker.cpp if (m_frame.selection().selection().isContentEditable() || caretBrowsing) { isContentEditable 736 Source/core/editing/SpellChecker.cpp && oldSelection.isContentEditable() isContentEditable 761 Source/core/editing/SpellChecker.cpp if (!m_frame.selection().selection().isContentEditable()) isContentEditable 104 Source/core/editing/VisibleSelection.h bool isContentEditable() const; isContentEditable 933 Source/core/html/HTMLElement.cpp if (isTextFormControl() || isContentEditable()) isContentEditable 60 Source/core/html/HTMLLabelElement.cpp return that->isContentEditable(); isContentEditable 193 Source/core/page/DragController.cpp return m_documentUnderMouse == m_dragInitiator && selection.isContentEditable() && selection.isRange() && !isCopyKeyDown(dragData); isContentEditable 435 Source/core/page/DragController.cpp return !frame->selection().isNone() && frame->selection().isContentEditable(); isContentEditable 900 Source/core/page/DragController.cpp if (src->selection().isCaret() && src->selection().isContentEditable()) { isContentEditable 2480 Source/core/page/EventHandler.cpp if (!result.isLiveLink() && innerNode && (innerNode->isContentEditable() || innerNode->isTextNode())) { isContentEditable 2797 Source/core/page/EventHandler.cpp && (m_frame->selection().isContentEditable() || (mev.targetNode() && mev.targetNode()->isTextNode()))) { isContentEditable 105 Source/core/page/TouchAdjustment.cpp if (node->isContentEditable()) isContentEditable 287 Source/core/page/TouchAdjustment.cpp if (candidate->isContentEditable()) { isContentEditable 290 Source/core/page/TouchAdjustment.cpp while (parent && parent->isContentEditable()) { isContentEditable 111 Source/core/rendering/HitTestResult.h bool isContentEditable() const; isContentEditable 1982 Source/core/rendering/RenderBlock.cpp bool isContentEditable; isContentEditable 1985 Source/core/rendering/RenderBlock.cpp isContentEditable = frame()->selection().rendererIsEditable(); isContentEditable 1988 Source/core/rendering/RenderBlock.cpp isContentEditable = frame()->page()->dragCaretController().isContentEditable(); isContentEditable 1990 Source/core/rendering/RenderBlock.cpp return caretPainter == this && (isContentEditable || caretBrowsing); isContentEditable 306 Source/web/ContextMenuClientImpl.cpp if (r.isContentEditable()) { isContentEditable 71 Source/web/WebHitTestResult.cpp return m_private->isContentEditable(); isContentEditable 164 Source/web/WebNode.cpp return m_private->isContentEditable(); isContentEditable 1885 Source/web/WebViewImpl.cpp } else if (element->isContentEditable()) { isContentEditable 1951 Source/web/WebViewImpl.cpp if (!node || !node->isContentEditable()) isContentEditable 2475 Source/web/WebViewImpl.cpp if (oldFocusedElement->isContentEditable() || oldFocusedElement->isTextFormControl()) isContentEditable 3894 Source/web/WebViewImpl.cpp if (touchHit.isContentEditable()) isContentEditable 72 public/web/WebHitTestResult.h BLINK_EXPORT bool isContentEditable() const; isContentEditable 110 public/web/WebNode.h BLINK_EXPORT bool isContentEditable() const;