summaryrefslogtreecommitdiff
path: root/dom/html/HTMLScriptElement.h
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-06-30 11:32:07 +0000
committerMoonchild <moonchild@palemoon.org>2020-06-30 11:51:11 +0000
commitc45b7ee3a985b2b4862fb182cdb34f644f737048 (patch)
tree53da33f85383ce934145da45b1ad4963b8e94f35 /dom/html/HTMLScriptElement.h
parentc7330b5eb48cdd69b06e5f55643ea4c94303381f (diff)
downloaduxp-c45b7ee3a985b2b4862fb182cdb34f644f737048.tar.gz
Issue #1603 - Part 1: Reorganize ScriptLoader/ScriptElement
- Moves scripting parts of DOM into 'dom/script' - Renames nsScript{Loader/Element} to Script{Loader/Element} - Adjusts all callers
Diffstat (limited to 'dom/html/HTMLScriptElement.h')
-rw-r--r--dom/html/HTMLScriptElement.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/dom/html/HTMLScriptElement.h b/dom/html/HTMLScriptElement.h
index bd446fa97d..6edeb98322 100644
--- a/dom/html/HTMLScriptElement.h
+++ b/dom/html/HTMLScriptElement.h
@@ -8,16 +8,16 @@
#define mozilla_dom_HTMLScriptElement_h
#include "nsIDOMHTMLScriptElement.h"
-#include "nsScriptElement.h"
#include "nsGenericHTMLElement.h"
#include "mozilla/Attributes.h"
+#include "mozilla/dom/ScriptElement.h"
namespace mozilla {
namespace dom {
class HTMLScriptElement final : public nsGenericHTMLElement,
public nsIDOMHTMLScriptElement,
- public nsScriptElement
+ public ScriptElement
{
public:
using Element::GetText;
@@ -98,7 +98,8 @@ protected:
virtual ~HTMLScriptElement();
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
- // nsScriptElement
+
+ // ScriptElement
virtual bool HasScriptContent() override;
};