2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-01-05 09:41:27 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsUnicharUtils.h" // for nsCaseInsensitiveStringComparator()
|
|
|
|
#include "nsIScriptContext.h"
|
|
|
|
#include "nsIScriptGlobalObject.h"
|
|
|
|
#include "nsIXPConnect.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "nsError.h"
|
|
|
|
#include "nsIArray.h"
|
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsDOMJSUtils.h"
|
2013-08-07 20:23:08 +00:00
|
|
|
#include "nsISupportsImpl.h"
|
2013-01-05 09:41:27 +00:00
|
|
|
#include "mozilla/dom/HTMLScriptElement.h"
|
2013-01-05 09:41:28 +00:00
|
|
|
#include "mozilla/dom/HTMLScriptElementBinding.h"
|
2013-01-05 09:41:27 +00:00
|
|
|
|
|
|
|
NS_IMPL_NS_NEW_HTML_ELEMENT_CHECK_PARSER(Script)
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-01-05 09:41:28 +00:00
|
|
|
JSObject*
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 14:13:33 +00:00
|
|
|
HTMLScriptElement::WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto)
|
2013-01-05 09:41:28 +00:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 14:13:33 +00:00
|
|
|
return HTMLScriptElementBinding::Wrap(aCx, this, aGivenProto);
|
2013-01-05 09:41:28 +00:00
|
|
|
}
|
|
|
|
|
2014-06-20 02:01:40 +00:00
|
|
|
HTMLScriptElement::HTMLScriptElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo,
|
2013-01-05 09:41:27 +00:00
|
|
|
FromParser aFromParser)
|
|
|
|
: nsGenericHTMLElement(aNodeInfo)
|
|
|
|
, nsScriptElement(aFromParser)
|
|
|
|
{
|
|
|
|
AddMutationObserver(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
HTMLScriptElement::~HTMLScriptElement()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-04-27 07:06:00 +00:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED(HTMLScriptElement, nsGenericHTMLElement,
|
|
|
|
nsIDOMHTMLScriptElement,
|
|
|
|
nsIScriptLoaderObserver,
|
|
|
|
nsIScriptElement,
|
|
|
|
nsIMutationObserver)
|
2013-01-05 09:41:27 +00:00
|
|
|
|
|
|
|
nsresult
|
|
|
|
HTMLScriptElement::BindToTree(nsIDocument* aDocument, nsIContent* aParent,
|
|
|
|
nsIContent* aBindingParent,
|
|
|
|
bool aCompileEventHandlers)
|
|
|
|
{
|
|
|
|
nsresult rv = nsGenericHTMLElement::BindToTree(aDocument, aParent,
|
|
|
|
aBindingParent,
|
|
|
|
aCompileEventHandlers);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2014-06-07 08:42:54 +00:00
|
|
|
if (GetCrossShadowCurrentDoc()) {
|
2013-01-05 09:41:27 +00:00
|
|
|
MaybeProcessScript();
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
HTMLScriptElement::ParseAttribute(int32_t aNamespaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
|
|
|
nsAttrValue& aResult)
|
|
|
|
{
|
2015-08-13 03:19:11 +00:00
|
|
|
if (aNamespaceID == kNameSpaceID_None) {
|
|
|
|
if (aAttribute == nsGkAtoms::crossorigin) {
|
|
|
|
ParseCORSValue(aValue, aResult);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aAttribute == nsGkAtoms::integrity) {
|
|
|
|
aResult.ParseStringOrAtom(aValue);
|
|
|
|
return true;
|
|
|
|
}
|
2013-01-05 09:41:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nsGenericHTMLElement::ParseAttribute(aNamespaceID, aAttribute, aValue,
|
|
|
|
aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2014-06-20 02:01:40 +00:00
|
|
|
HTMLScriptElement::Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const
|
2013-01-05 09:41:27 +00:00
|
|
|
{
|
|
|
|
*aResult = nullptr;
|
|
|
|
|
2015-10-18 05:24:48 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo> ni = RefPtr<mozilla::dom::NodeInfo>(aNodeInfo).forget();
|
2014-03-15 19:00:17 +00:00
|
|
|
HTMLScriptElement* it = new HTMLScriptElement(ni, NOT_FROM_PARSER);
|
2013-01-05 09:41:27 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsINode> kungFuDeathGrip = it;
|
|
|
|
nsresult rv = const_cast<HTMLScriptElement*>(this)->CopyInnerTo(it);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// The clone should be marked evaluated if we are.
|
|
|
|
it->mAlreadyStarted = mAlreadyStarted;
|
|
|
|
it->mLineNumber = mLineNumber;
|
|
|
|
it->mMalformed = mMalformed;
|
|
|
|
|
|
|
|
kungFuDeathGrip.swap(*aResult);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
HTMLScriptElement::GetText(nsAString& aValue)
|
|
|
|
{
|
2015-05-22 18:16:20 +00:00
|
|
|
if (!nsContentUtils::GetNodeTextContent(this, false, aValue, fallible)) {
|
2014-03-20 19:51:16 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2013-01-05 09:41:27 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
HTMLScriptElement::SetText(const nsAString& aValue)
|
|
|
|
{
|
2013-01-05 09:41:28 +00:00
|
|
|
ErrorResult rv;
|
|
|
|
SetText(aValue, rv);
|
2015-04-27 13:18:51 +00:00
|
|
|
return rv.StealNSResult();
|
2013-01-05 09:41:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
HTMLScriptElement::SetText(const nsAString& aValue, ErrorResult& rv)
|
|
|
|
{
|
|
|
|
rv = nsContentUtils::SetNodeTextContent(this, aValue, true);
|
2013-01-05 09:41:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMPL_STRING_ATTR(HTMLScriptElement, Charset, charset)
|
|
|
|
NS_IMPL_BOOL_ATTR(HTMLScriptElement, Defer, defer)
|
|
|
|
NS_IMPL_URI_ATTR(HTMLScriptElement, Src, src)
|
|
|
|
NS_IMPL_STRING_ATTR(HTMLScriptElement, Type, type)
|
|
|
|
NS_IMPL_STRING_ATTR(HTMLScriptElement, HtmlFor, _for)
|
|
|
|
NS_IMPL_STRING_ATTR(HTMLScriptElement, Event, event)
|
|
|
|
|
2013-01-05 09:41:28 +00:00
|
|
|
void
|
|
|
|
HTMLScriptElement::SetCharset(const nsAString& aCharset, ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::charset, aCharset, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
HTMLScriptElement::SetDefer(bool aDefer, ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetHTMLBoolAttr(nsGkAtoms::defer, aDefer, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
HTMLScriptElement::Defer()
|
|
|
|
{
|
|
|
|
return GetBoolAttr(nsGkAtoms::defer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
HTMLScriptElement::SetSrc(const nsAString& aSrc, ErrorResult& rv)
|
|
|
|
{
|
|
|
|
rv = SetAttrHelper(nsGkAtoms::src, aSrc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
HTMLScriptElement::SetType(const nsAString& aType, ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::type, aType, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
HTMLScriptElement::SetHtmlFor(const nsAString& aHtmlFor, ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::_for, aHtmlFor, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
HTMLScriptElement::SetEvent(const nsAString& aEvent, ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::event, aEvent, rv);
|
|
|
|
}
|
|
|
|
|
2013-01-05 09:41:27 +00:00
|
|
|
nsresult
|
|
|
|
HTMLScriptElement::GetAsync(bool* aValue)
|
|
|
|
{
|
2013-01-05 09:41:28 +00:00
|
|
|
*aValue = Async();
|
2013-01-05 09:41:27 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-01-05 09:41:28 +00:00
|
|
|
bool
|
|
|
|
HTMLScriptElement::Async()
|
|
|
|
{
|
|
|
|
return mForceAsync || GetBoolAttr(nsGkAtoms::async);
|
|
|
|
}
|
|
|
|
|
2013-01-05 09:41:27 +00:00
|
|
|
nsresult
|
|
|
|
HTMLScriptElement::SetAsync(bool aValue)
|
2013-01-05 09:41:28 +00:00
|
|
|
{
|
|
|
|
ErrorResult rv;
|
|
|
|
SetAsync(aValue, rv);
|
2015-04-27 13:18:51 +00:00
|
|
|
return rv.StealNSResult();
|
2013-01-05 09:41:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
HTMLScriptElement::SetAsync(bool aValue, ErrorResult& rv)
|
2013-01-05 09:41:27 +00:00
|
|
|
{
|
|
|
|
mForceAsync = false;
|
2013-01-05 09:41:28 +00:00
|
|
|
SetHTMLBoolAttr(nsGkAtoms::async, aValue, rv);
|
2013-01-05 09:41:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
HTMLScriptElement::AfterSetAttr(int32_t aNamespaceID, nsIAtom* aName,
|
|
|
|
const nsAttrValue* aValue, bool aNotify)
|
|
|
|
{
|
|
|
|
if (nsGkAtoms::async == aName && kNameSpaceID_None == aNamespaceID) {
|
|
|
|
mForceAsync = false;
|
|
|
|
}
|
|
|
|
return nsGenericHTMLElement::AfterSetAttr(aNamespaceID, aName, aValue,
|
|
|
|
aNotify);
|
|
|
|
}
|
|
|
|
|
2013-10-08 19:25:01 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
HTMLScriptElement::GetInnerHTML(nsAString& aInnerHTML)
|
2013-01-05 09:41:27 +00:00
|
|
|
{
|
2015-05-22 18:16:20 +00:00
|
|
|
if (!nsContentUtils::GetNodeTextContent(this, false, aInnerHTML, fallible)) {
|
2014-03-19 17:05:03 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2013-10-08 19:25:01 +00:00
|
|
|
return NS_OK;
|
2013-01-05 09:41:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
HTMLScriptElement::SetInnerHTML(const nsAString& aInnerHTML,
|
|
|
|
ErrorResult& aError)
|
|
|
|
{
|
|
|
|
aError = nsContentUtils::SetNodeTextContent(this, aInnerHTML, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// variation of this code in nsSVGScriptElement - check if changes
|
|
|
|
// need to be transfered when modifying
|
|
|
|
|
|
|
|
void
|
|
|
|
HTMLScriptElement::GetScriptType(nsAString& type)
|
|
|
|
{
|
|
|
|
GetType(type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
HTMLScriptElement::GetScriptText(nsAString& text)
|
|
|
|
{
|
|
|
|
GetText(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
HTMLScriptElement::GetScriptCharset(nsAString& charset)
|
|
|
|
{
|
|
|
|
GetCharset(charset);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
HTMLScriptElement::FreezeUriAsyncDefer()
|
|
|
|
{
|
|
|
|
if (mFrozen) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// variation of this code in nsSVGScriptElement - check if changes
|
|
|
|
// need to be transfered when modifying
|
|
|
|
if (HasAttr(kNameSpaceID_None, nsGkAtoms::src)) {
|
|
|
|
nsAutoString src;
|
|
|
|
GetSrc(src);
|
|
|
|
NS_NewURI(getter_AddRefs(mUri), src);
|
|
|
|
// At this point mUri will be null for invalid URLs.
|
|
|
|
mExternal = true;
|
|
|
|
|
|
|
|
bool defer, async;
|
|
|
|
GetAsync(&async);
|
|
|
|
GetDefer(&defer);
|
|
|
|
|
|
|
|
mDefer = !async && defer;
|
|
|
|
mAsync = async;
|
|
|
|
}
|
|
|
|
|
|
|
|
mFrozen = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
CORSMode
|
|
|
|
HTMLScriptElement::GetCORSMode() const
|
|
|
|
{
|
|
|
|
return AttrValueToCORSMode(GetParsedAttr(nsGkAtoms::crossorigin));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
HTMLScriptElement::HasScriptContent()
|
|
|
|
{
|
|
|
|
return (mFrozen ? mExternal : HasAttr(kNameSpaceID_None, nsGkAtoms::src)) ||
|
|
|
|
nsContentUtils::HasNonEmptyTextContent(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|