HomeSort by relevance Sort by last modified time
    Searched refs:isContentEditable (Results 26 - 50 of 63) sorted by null

12 3

  /external/webkit/WebCore/dom/
Node.idl 131 readonly attribute boolean isContentEditable;
Node.cpp 746 bool Node::isContentEditable() const
748 return parent() && parent()->isContentEditable();
758 return isContentEditable();
    [all...]
Node.h 308 virtual bool isContentEditable() const;
  /external/webkit/WebCore/editing/
IndentOutdentCommand.cpp 183 if (!enclosingNode || !enclosingNode->parentNode()->isContentEditable()) // We can't outdent if there is no place to go!
212 && splitPointParent->parentNode()->isContentEditable()) // We can't outdent if there is no place to go!
Editor.cpp 120 return m_frame->selection()->isContentEditable();
188 return selection->isRange() && selection->isContentEditable();
199 if (!startContainer->isContentEditable() || !endContainer->isContentEditable())
    [all...]
VisiblePosition.cpp 483 if (node->hasTagName(htmlTag) && !node->isContentEditable() && node->document()->body() && node->document()->body()->isContentEditable())
EditorCommand.cpp     [all...]
SelectionController.cpp     [all...]
ApplyStyleCommand.cpp     [all...]
  /external/webkit/WebCore/rendering/
HitTestResult.cpp 348 // really isContentEditable(); it's more like needsEditingContextMenu(). In many ways, this
351 bool HitTestResult::isContentEditable() const
362 return m_innerNonSharedNode->isContentEditable();
RootInlineBox.cpp 361 return leaf && leaf->renderer() && leaf->renderer()->node() && leaf->renderer()->node()->isContentEditable();
  /external/webkit/WebCore/html/
HTMLElement.cpp 650 return Element::supportsFocus() || (isContentEditable() && parent() && !parent()->isContentEditable());
653 bool HTMLElement::isContentEditable() const
655 if (document()->frame() && document()->frame()->isContentEditable())
664 return parentNode()->isContentEditable();
674 if (document()->frame() && document()->frame()->isContentEditable())
681 return parentNode()->isContentEditable();
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebElementDictionary.mm 255 return [NSNumber numberWithBool:_result->isContentEditable()];
  /external/webkit/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 253 return m_page->isContentEditable();
371 if (start->isContentEditable()) {
  /external/webkit/WebCore/page/
DragController.cpp 134 return m_documentUnderMouse == m_dragInitiator && selection->isContentEditable() && !isCopyKeyDown();
351 return !frame->selection()->isNone() && frame->selection()->isContentEditable();
476 if (!result.innerNonSharedNode()->isContentEditable())
681 if (src->selection()->isCaret() && src->selection()->isContentEditable()) {
Frame.h 242 bool isContentEditable() const; // if true, everything in frame is editable
FocusController.cpp 263 ASSERT(node->isContentEditable());
Frame.cpp 857 bool Frame::isContentEditable() const
    [all...]
  /external/webkit/WebKit/chromium/src/
ContextMenuClientImpl.cpp 198 if (r.isContentEditable()) {
  /external/webkit/WebKit/gtk/webkit/
webkitprivate.cpp 160 if (result.isContentEditable())
  /external/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.cpp 254 if (start->isContentEditable()) {
  /external/webkit/WebKit/qt/Api/
qwebframe.h 87 bool isContentEditable() const;
qwebframe.cpp     [all...]
  /external/webkit/WebKit/win/
WebElementPropertyBag.cpp 187 if (m_result->isContentEditable())
  /external/webkit/WebCore/platform/
ContextMenu.cpp 310 if (!result.isContentEditable() && (node->isElementNode() && static_cast<Element*>(node)->isFormControlElement()))
317 if (!result.isContentEditable()) {
    [all...]

Completed in 421 milliseconds

12 3