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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user