summaryrefslogtreecommitdiffstats
path: root/dom/html/VideoDocument.cpp
diff options
context:
space:
mode:
authorOlli Pettay <Olli.Pettay@helsinki.fi>2019-09-05 11:29:47 +0200
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-09-05 11:29:47 +0200
commitd90dd7b0c60e7950b668a08d415c0395c92db535 (patch)
treea0a740e1eb1acaff5d3dd92d1246ea80d1d9aefb /dom/html/VideoDocument.cpp
parent334a892eb5f94c9adc5253101a213c8b8b492df8 (diff)
downloadUXP-d90dd7b0c60e7950b668a08d415c0395c92db535.tar
UXP-d90dd7b0c60e7950b668a08d415c0395c92db535.tar.gz
UXP-d90dd7b0c60e7950b668a08d415c0395c92db535.tar.lz
UXP-d90dd7b0c60e7950b668a08d415c0395c92db535.tar.xz
UXP-d90dd7b0c60e7950b668a08d415c0395c92db535.zip
Ensure the right body element is used throughout the method call.
Diffstat (limited to 'dom/html/VideoDocument.cpp')
-rw-r--r--dom/html/VideoDocument.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/html/VideoDocument.cpp b/dom/html/VideoDocument.cpp
index 1bd898564..76b2e326f 100644
--- a/dom/html/VideoDocument.cpp
+++ b/dom/html/VideoDocument.cpp
@@ -90,7 +90,7 @@ VideoDocument::CreateSyntheticVideoDocument(nsIChannel* aChannel,
nsresult rv = MediaDocument::CreateSyntheticDocument();
NS_ENSURE_SUCCESS(rv, rv);
- Element* body = GetBodyElement();
+ RefPtr<Element> body = GetBodyElement();
if (!body) {
NS_WARNING("no body on video document!");
return NS_ERROR_FAILURE;