diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-08-28 14:39:17 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-08-28 14:39:17 +0200 |
commit | b58a8779c02e8d4abdaae49e1fcc11efeb407bee (patch) | |
tree | dc251f391fe9657bc08341dc4cbcfd0ca431b636 /dom/base/nsIContentSerializer.h | |
parent | 31def0da05280ab834c3585c37ec1b5cde29c89c (diff) | |
download | UXP-b58a8779c02e8d4abdaae49e1fcc11efeb407bee.tar UXP-b58a8779c02e8d4abdaae49e1fcc11efeb407bee.tar.gz UXP-b58a8779c02e8d4abdaae49e1fcc11efeb407bee.tar.lz UXP-b58a8779c02e8d4abdaae49e1fcc11efeb407bee.tar.xz UXP-b58a8779c02e8d4abdaae49e1fcc11efeb407bee.zip |
Issue #1221: Pass the original element into
nsXMLContentSerializer::CheckElementEnd so that we can properly
determine whether it has children.
This resolves #1221
Diffstat (limited to 'dom/base/nsIContentSerializer.h')
-rw-r--r-- | dom/base/nsIContentSerializer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dom/base/nsIContentSerializer.h b/dom/base/nsIContentSerializer.h index f023cbc90..35014bd2c 100644 --- a/dom/base/nsIContentSerializer.h +++ b/dom/base/nsIContentSerializer.h @@ -55,6 +55,7 @@ class nsIContentSerializer : public nsISupports { nsAString& aStr) = 0; NS_IMETHOD AppendElementEnd(mozilla::dom::Element* aElement, + mozilla::dom::Element* aOriginalElement, nsAString& aStr) = 0; NS_IMETHOD Flush(nsAString& aStr) = 0; |