| Index: Source/core/dom/ContainerNode.h
|
| diff --git a/Source/core/dom/ContainerNode.h b/Source/core/dom/ContainerNode.h
|
| index 795354b8790055587f60e8374eb776417db52c52..77080b8dd2a370eec022f55c1155be5ae6344a7b 100644
|
| --- a/Source/core/dom/ContainerNode.h
|
| +++ b/Source/core/dom/ContainerNode.h
|
| @@ -96,6 +96,9 @@ public:
|
| unsigned childNodeCount() const;
|
| Node* childNode(unsigned index) const;
|
|
|
| + PassRefPtr<Element> querySelector(const AtomicString& selectors, ExceptionState&);
|
| + PassRefPtr<NodeList> querySelectorAll(const AtomicString& selectors, ExceptionState&);
|
| +
|
| void insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionState& = ASSERT_NO_EXCEPTION);
|
| void replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionState& = ASSERT_NO_EXCEPTION);
|
| void removeChild(Node* child, ExceptionState& = ASSERT_NO_EXCEPTION);
|
|
|