summaryrefslogtreecommitdiffstats
path: root/dom/html/HTMLScriptElement.h
diff options
context:
space:
mode:
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 bd446fa97..6edeb9832 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;
};