Home
last modified time | relevance | path

Searched refs:listNode (Results 1 – 9 of 9) sorted by relevance

/external/webkit/WebCore/editing/
DInsertListCommand.cpp140 HTMLElement* listNode = enclosingList(listChildNode); in doApply() local
141 if (!listNode) in doApply()
142 listNode = fixOrphanedListChild(listChildNode); in doApply()
143 if (!listNode->hasTagName(listTag)) in doApply()
161 if (enclosingList(nextListChild) != listNode) in doApply()
165 if (enclosingList(previousListChild) != listNode) in doApply()
174 if (enclosingList(listNode)) { in doApply()
187 splitElement(listNode, splitTreeToNode(nextListChild, listNode)); in doApply()
188 insertNodeBefore(nodeToInsert, listNode); in doApply()
189 } else if (nextListChild || listChildNode->parentNode() != listNode) { in doApply()
[all …]
DModifySelectionListLevel.cpp263 Element* listNode = startListChild->parentElement(); in doApply() local
267 insertSiblingNodeRangeBefore(startListChild, endListChild, listNode); in doApply()
270 removeNode(listNode); in doApply()
273 insertSiblingNodeRangeAfter(startListChild, endListChild, listNode); in doApply()
274 } else if (listNode) { in doApply()
276 splitElement(listNode, startListChild); in doApply()
277 insertSiblingNodeRangeBefore(startListChild, endListChild, listNode); in doApply()
DCompositeEditCommand.cpp1003 Node* listNode = emptyListItem->parentNode(); in breakOutOfEmptyListItem() local
1005 if (!listNode in breakOutOfEmptyListItem()
1006 || (!listNode->hasTagName(ulTag) && !listNode->hasTagName(olTag)) in breakOutOfEmptyListItem()
1007 || !listNode->isContentEditable()) in breakOutOfEmptyListItem()
1011 if (Node* blockEnclosingList = listNode->parentNode()) { in breakOutOfEmptyListItem()
1013 … if (visiblePositionAfterNode(blockEnclosingList) == visiblePositionAfterNode(listNode)) { in breakOutOfEmptyListItem()
1018 splitElement(static_cast<Element*>(blockEnclosingList), listNode); in breakOutOfEmptyListItem()
1019 removeNodePreservingChildren(listNode->parentNode()); in breakOutOfEmptyListItem()
1032 splitElement(static_cast<Element*>(listNode), emptyListItem); in breakOutOfEmptyListItem()
1037 insertNodeBefore(newBlock, listNode); in breakOutOfEmptyListItem()
[all …]
DIndentOutdentCommand.cpp74 RefPtr<Element> listNode = enclosingList(lastNodeInSelectedParagraph); in tryIndentingAsListItem() local
75 if (!listNode) in tryIndentingAsListItem()
93 RefPtr<Element> newList = document()->createElement(listNode->tagQName(), false); in tryIndentingAsListItem()
/external/webkit/WebCore/html/
DHTMLLIElement.cpp90 Node* listNode = 0; in attach() local
92 while (!listNode && (n = n->parentNode())) { in attach()
94 listNode = n; in attach()
99 if (!listNode) in attach()
/external/webkit/WebCore/inspector/front-end/
Dtreeoutline.js29 function TreeOutline(listNode) argument
33 this._childrenListNode = listNode;
335 var listNode = node.enclosingNodeOrSelfWithNodeNameInArray(["ol", "li"]);
336 if (listNode)
337 return listNode.parentTreeElement || listNode.treeElement;
/external/webkit/WebCore/rendering/
DRenderListItem.cpp329 Node* listNode = enclosingList(node()); in explicitValueChanged() local
331 if (listNode) in explicitValueChanged()
332 listRenderer = listNode->renderer(); in explicitValueChanged()
/external/webkit/JavaScriptCore/parser/
DNodeConstructors.h206 …inline ArgumentListNode::ArgumentListNode(JSGlobalData* globalData, ArgumentListNode* listNode, Ex… in ArgumentListNode() argument
211 listNode->m_next = this; in ArgumentListNode()
219 inline ArgumentsNode::ArgumentsNode(JSGlobalData*, ArgumentListNode* listNode) in ArgumentsNode() argument
220 : m_listNode(listNode) in ArgumentsNode()
/external/webkit/WebCore/
DChangeLog-2008-08-1034426 (TreeOutline.prototype.treeElementFromPoint): Check listNode for null/undefined
34427 before accessing any properties. Return null if listNode is null.
65141 it and listNode, if they exists, so that moving listChildNode doesn't put it out