Searched refs:m_domEditor (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DDOMPatchSupport.h78 DOMEditor* m_domEditor; member in class:WebCore::DOMPatchSupport
H A DDOMPatchSupport.cpp84 : m_domEditor(domEditor)
165 if (!m_domEditor->replaceChild(parentNode, fragment.release(), node, ec))
180 return m_domEditor->replaceChild(oldNode->parentNode(), newNode, oldNode, ec);
183 if (!m_domEditor->setNodeValue(oldNode, newNode->nodeValue(), ec))
198 if (!m_domEditor->removeAttribute(oldElement, attribute->localName(), ec))
208 if (!m_domEditor->setAttribute(oldElement, attribute->name().localName(), attribute->value(), ec))
407 if (!m_domEditor->insertBefore(parentNode, node.release(), anchorNode, ec))
465 bool result = m_domEditor->insertBefore(parentNode, digest->m_node, anchor, ec);
473 if (!m_domEditor->removeChild(oldNode->parentNode(), oldNode.get(), ec))
485 if (!m_domEditor
[all...]
H A DInspectorDOMAgent.cpp246 m_domEditor = adoptPtr(new DOMEditor(m_history.get()));
261 m_domEditor.clear();
667 m_domEditor->setAttribute(element, name, value, errorString);
692 m_domEditor->removeAttribute(element, *name, errorString);
702 if (!m_domEditor->setAttribute(element, attribute->name().toString(), attribute->value(), errorString))
707 m_domEditor->removeAttribute(element, *name, errorString);
716 m_domEditor->removeAttribute(element, name, errorString);
731 m_domEditor->removeChild(parentNode, node, errorString);
753 if (!m_domEditor->insertBefore(newElem.get(), child, 0, errorString))
759 if (!m_domEditor
[all...]
H A DDOMEditor.cpp216 , m_domEditor(adoptPtr(new DOMEditor(m_history.get())))
223 DOMPatchSupport domPatchSupport(m_domEditor.get(), m_node->ownerDocument());
250 OwnPtr<DOMEditor> m_domEditor; member in class:WebCore::DOMEditor::SetOuterHTMLAction
H A DInspectorDOMAgent.h271 OwnPtr<DOMEditor> m_domEditor; member in class:WebCore::InspectorDOMAgent

Completed in 211 milliseconds