Fixing nsbeta3+ bug 52572. Updating the DOM intefaces in mozilla to match the current DOM Level 2 PR. r=kandrot@netscape.com

git-svn-id: svn://10.0.0.236/trunk@79073 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jst%netscape.com
2000-09-14 05:19:00 +00:00
parent aafaf24450
commit dc5efe66e1
27 changed files with 414 additions and 175 deletions

View File

@@ -1574,6 +1574,12 @@ nsHTMLDocument::HasChildNodes(PRBool* aReturn)
return nsDocument::HasChildNodes(aReturn);
}
NS_IMETHODIMP
nsHTMLDocument::HasAttributes(PRBool* aReturn)
{
return nsDocument::HasAttributes(aReturn);
}
NS_IMETHODIMP
nsHTMLDocument::GetNodeName(nsAWritableString& aNodeName)
{
@@ -1665,10 +1671,11 @@ nsHTMLDocument::Normalize()
}
NS_IMETHODIMP
nsHTMLDocument::Supports(const nsAReadableString& aFeature, const nsAReadableString& aVersion,
PRBool* aReturn)
nsHTMLDocument::IsSupported(const nsAReadableString& aFeature,
const nsAReadableString& aVersion,
PRBool* aReturn)
{
return nsDocument::Supports(aFeature, aVersion, aReturn);
return nsDocument::IsSupported(aFeature, aVersion, aReturn);
}