Added DumpContent() for parser regression test.
git-svn-id: svn://10.0.0.236/trunk@70922 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
7d6ec636e5
commit
3a2985bdb9
@ -230,6 +230,11 @@ nsXMLCDATASection::List(FILE* out, PRInt32 aIndent) const
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsXMLCDATASection::DumpContent(FILE* out, PRInt32 aIndent,PRBool aDumpAll) const {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsXMLCDATASection::HandleDOMEvent(nsIPresContext* aPresContext,
|
||||
nsEvent* aEvent,
|
||||
|
||||
@ -146,6 +146,9 @@ public:
|
||||
NS_IMETHOD List(FILE* out, PRInt32 aIndent) const {
|
||||
return mInner.List(out, aIndent);
|
||||
}
|
||||
NS_IMETHOD DumpContent(FILE* out, PRInt32 aIndent,PRBool aDumpAll) const {
|
||||
return mInner.DumpContent(out, aIndent,aDumpAll);
|
||||
}
|
||||
NS_IMETHOD BeginConvertToXIF(nsIXIFConverter* aConverter) const {
|
||||
return mInner.BeginConvertToXIF(aConverter);
|
||||
}
|
||||
|
||||
@ -390,6 +390,11 @@ nsXMLProcessingInstruction::List(FILE* out, PRInt32 aIndent) const
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsXMLProcessingInstruction::DumpContent(FILE* out, PRInt32 aIndent,PRBool aDumpAll) const {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsXMLProcessingInstruction::HandleDOMEvent(nsIPresContext* aPresContext,
|
||||
nsEvent* aEvent,
|
||||
|
||||
@ -230,6 +230,11 @@ nsXMLCDATASection::List(FILE* out, PRInt32 aIndent) const
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsXMLCDATASection::DumpContent(FILE* out, PRInt32 aIndent,PRBool aDumpAll) const {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsXMLCDATASection::HandleDOMEvent(nsIPresContext* aPresContext,
|
||||
nsEvent* aEvent,
|
||||
|
||||
@ -146,6 +146,9 @@ public:
|
||||
NS_IMETHOD List(FILE* out, PRInt32 aIndent) const {
|
||||
return mInner.List(out, aIndent);
|
||||
}
|
||||
NS_IMETHOD DumpContent(FILE* out, PRInt32 aIndent,PRBool aDumpAll) const {
|
||||
return mInner.DumpContent(out, aIndent,aDumpAll);
|
||||
}
|
||||
NS_IMETHOD BeginConvertToXIF(nsIXIFConverter* aConverter) const {
|
||||
return mInner.BeginConvertToXIF(aConverter);
|
||||
}
|
||||
|
||||
@ -390,6 +390,11 @@ nsXMLProcessingInstruction::List(FILE* out, PRInt32 aIndent) const
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsXMLProcessingInstruction::DumpContent(FILE* out, PRInt32 aIndent,PRBool aDumpAll) const {
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsXMLProcessingInstruction::HandleDOMEvent(nsIPresContext* aPresContext,
|
||||
nsEvent* aEvent,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user