diff options
author | Olli Pettay <Olli.Pettay@helsinki.fi> | 2019-09-05 11:29:47 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-09-05 11:29:47 +0200 |
commit | f016838255a5fc5dc6babd0fb79de1275eeffa12 (patch) | |
tree | a0a740e1eb1acaff5d3dd92d1246ea80d1d9aefb | |
parent | 849dcb9db861649f97880762bb914c6ece984bfb (diff) | |
download | uxp-f016838255a5fc5dc6babd0fb79de1275eeffa12.tar.gz |
Ensure the right body element is used throughout the method call.
-rw-r--r-- | dom/html/ImageDocument.cpp | 2 | ||||
-rw-r--r-- | dom/html/PluginDocument.cpp | 2 | ||||
-rw-r--r-- | dom/html/VideoDocument.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/dom/html/ImageDocument.cpp b/dom/html/ImageDocument.cpp index f83a804bef..451d989c30 100644 --- a/dom/html/ImageDocument.cpp +++ b/dom/html/ImageDocument.cpp @@ -659,7 +659,7 @@ ImageDocument::CreateSyntheticDocument() NS_ENSURE_SUCCESS(rv, rv); // Add the image element - Element* body = GetBodyElement(); + RefPtr<Element> body = GetBodyElement(); if (!body) { NS_WARNING("no body on image document!"); return NS_ERROR_FAILURE; diff --git a/dom/html/PluginDocument.cpp b/dom/html/PluginDocument.cpp index 1c923ecc63..f6be8a915b 100644 --- a/dom/html/PluginDocument.cpp +++ b/dom/html/PluginDocument.cpp @@ -206,7 +206,7 @@ PluginDocument::CreateSyntheticPluginDocument() NS_ENSURE_SUCCESS(rv, rv); // then attach our plugin - Element* body = GetBodyElement(); + RefPtr<Element> body = GetBodyElement(); if (!body) { NS_WARNING("no body on plugin document!"); return NS_ERROR_FAILURE; diff --git a/dom/html/VideoDocument.cpp b/dom/html/VideoDocument.cpp index 1bd898564a..76b2e326fc 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; |