Bug 1396568 - Make DocumentFragment::mHost a strong reference (so that ShadowRoot.host doesn't become null)

Tag #1375
This commit is contained in:
Matt A. Tobin 2020-04-17 06:15:38 -04:00 committed by Roy Tam
commit cc649173d2
4 changed files with 14 additions and 8 deletions

View file

@ -43,6 +43,8 @@ public:
// nsISupports
NS_DECL_ISUPPORTS_INHERITED
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(DocumentFragment,
FragmentOrElement)
// interface nsIDOMNode
NS_FORWARD_NSIDOMNODE_TO_NSINODE
@ -121,12 +123,12 @@ public:
return nullptr;
}
nsIContent* GetHost() const
Element* GetHost() const
{
return mHost;
}
void SetHost(nsIContent* aHost)
void SetHost(Element* aHost)
{
mHost = aHost;
}
@ -145,7 +147,7 @@ protected:
}
nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override;
nsIContent* mHost; // Weak
nsCOMPtr<Element> mHost;
};
} // namespace dom