Commit f80c3a72 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

mshtml: Added nsIDOMNamedNodeMap interface.

parent 51aafd56
......@@ -110,7 +110,6 @@ typedef nsISupports nsIWidget;
typedef nsISupports nsIDOMBarProp;
typedef nsISupports nsIPrompt;
typedef nsISupports nsIAuthPrompt;
typedef nsISupports nsIDOMNamedNodeMap;
typedef nsISupports nsIDOMDocumentType;
typedef nsISupports nsIDOMDOMImplementation;
typedef nsISupports nsIDOMCDATASection;
......@@ -647,6 +646,23 @@ interface nsIDOM3Node : nsISupports
[
object,
uuid(a6cf907b-15b3-11d2-932e-00805f8add32),
local
]
interface nsIDOMNamedNodeMap : nsISupports
{
nsresult GetNamedItem(const nsAString *name, nsIDOMNode **_retval);
nsresult SetNamedItem(nsIDOMNode *arg, nsIDOMNode **_retval);
nsresult RemoveNamedItem(const nsAString *name, nsIDOMNode **_retval);
nsresult Item(PRUint32 index, nsIDOMNode **_retval);
nsresult GetLength(PRUint32 *aLength);
nsresult GetNamedItemNS(const nsAString *namespaceURI, const nsAString *localName, nsIDOMNode **_retval);
nsresult SetNamedItemNS(nsIDOMNode *arg, nsIDOMNode **_retval);
nsresult RemoveNamedItemNS(const nsAString *namespaceURI, const nsAString *localName, nsIDOMNode **_retval);
}
[
object,
uuid(a6cf907c-15b3-11d2-932e-00805f8add32),
local
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment