Searched defs:hasEditableStyle (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DFrameSelection.h97 bool hasEditableStyle() const { return m_selection.hasEditableStyle(); } function in class:blink::FINAL
H A DVisibleSelection.cpp733 bool VisibleSelection::hasEditableStyle() const function in class:blink::VisibleSelection
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNode.h409 bool hasEditableStyle(EditableType editableType = ContentIsEditable, UserSelectAllTreatment treatment = UserSelectAllIsAlwaysNonEditable) const function in class:blink::Node
413 return hasEditableStyle(Editable, treatment);
425 return hasEditableStyle(RichlyEditable, UserSelectAllIsAlwaysNonEditable);
786 bool hasEditableStyle(EditableLevel, UserSelectAllTreatment = UserSelectAllIsAlwaysNonEditable) const;
H A DNode.cpp544 return hasEditableStyle(Editable, treatment);
550 return hasEditableStyle(RichlyEditable, UserSelectAllIsAlwaysNonEditable);
553 bool Node::hasEditableStyle(EditableLevel editableLevel, UserSelectAllTreatment treatment) const function in class:blink::Node
586 if (hasEditableStyle(editableLevel))
1101 if (hasEditableStyle())
1172 return hasEditableStyle() && isElementNode() && (!parentNode() || !parentNode()->hasEditableStyle()
1189 for (Node* n = const_cast<Node*>(this); n && n->hasEditableStyle(); n = n->parentNode()) {

Completed in 92 milliseconds