Updating the DOM Node interface to match the DOM Level 2 interface, only stub implemetations so far.

This commit is contained in:
jst@netscape.com
2000-04-01 13:31:23 +00:00
parent 76274c2b3a
commit 505958c763
45 changed files with 1087 additions and 169 deletions

View File

@@ -1348,6 +1348,30 @@ nsHTMLDocument::GetNodeType(PRUint16* aNodeType)
return nsDocument::GetNodeType(aNodeType);
}
NS_IMETHODIMP
nsHTMLDocument::GetNamespaceURI(nsString& aNamespaceURI)
{
return nsDocument::GetNamespaceURI(aNamespaceURI);
}
NS_IMETHODIMP
nsHTMLDocument::GetPrefix(nsString& aPrefix)
{
return nsDocument::GetPrefix(aPrefix);
}
NS_IMETHODIMP
nsHTMLDocument::SetPrefix(const nsString& aPrefix)
{
return nsDocument::SetPrefix(aPrefix);
}
NS_IMETHODIMP
nsHTMLDocument::GetLocalName(nsString& aLocalName)
{
return nsDocument::GetLocalName(aLocalName);
}
NS_IMETHODIMP
nsHTMLDocument::GetParentNode(nsIDOMNode** aParentNode)
{
@@ -1384,6 +1408,19 @@ nsHTMLDocument::CloneNode(PRBool aDeep, nsIDOMNode** aReturn)
return nsDocument::CloneNode(aDeep, aReturn);
}
NS_IMETHODIMP
nsHTMLDocument::Normalize()
{
return nsDocument::Normalize();
}
NS_IMETHODIMP
nsHTMLDocument::Supports(const nsString& aFeature, const nsString& aVersion,
PRBool* aReturn)
{
return nsDocument::Supports(aFeature, aVersion, aReturn);
}
//
// nsIDOMHTMLDocument interface implementation