2014-08-27 05:46:24 +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: */
|
2012-05-21 11:12:37 +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/. */
|
1999-01-12 08:45:23 +00:00
|
|
|
|
2006-03-30 08:03:04 +00:00
|
|
|
/*
|
2013-03-10 08:00:33 +00:00
|
|
|
* Implementation of the |attributes| property of DOM Core's Element object.
|
2006-03-30 08:03:04 +00:00
|
|
|
*/
|
|
|
|
|
1999-01-12 08:45:23 +00:00
|
|
|
#include "nsDOMAttributeMap.h"
|
2013-04-26 06:48:23 +00:00
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2013-04-09 15:29:44 +00:00
|
|
|
#include "mozilla/dom/Attr.h"
|
2012-11-14 22:10:08 +00:00
|
|
|
#include "mozilla/dom/Element.h"
|
2014-08-25 09:25:34 +00:00
|
|
|
#include "mozilla/dom/NamedNodeMapBinding.h"
|
2015-02-04 05:46:23 +00:00
|
|
|
#include "mozilla/dom/NodeInfoInlines.h"
|
2013-04-26 06:48:23 +00:00
|
|
|
#include "nsAttrName.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsError.h"
|
2013-10-02 11:40:07 +00:00
|
|
|
#include "nsIContentInlines.h"
|
2008-02-22 02:18:43 +00:00
|
|
|
#include "nsIDocument.h"
|
2014-02-27 23:04:46 +00:00
|
|
|
#include "nsNameSpaceManager.h"
|
2004-06-25 12:26:02 +00:00
|
|
|
#include "nsNodeInfoManager.h"
|
2009-12-28 14:35:06 +00:00
|
|
|
#include "nsUnicharUtils.h"
|
2013-05-06 23:37:47 +00:00
|
|
|
#include "nsWrapperCacheInlines.h"
|
1999-01-12 08:45:23 +00:00
|
|
|
|
2012-10-16 11:51:00 +00:00
|
|
|
using namespace mozilla;
|
2013-04-09 15:29:44 +00:00
|
|
|
using namespace mozilla::dom;
|
2012-10-16 11:51:00 +00:00
|
|
|
|
1999-01-12 08:45:23 +00:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2010-07-30 13:42:11 +00:00
|
|
|
nsDOMAttributeMap::nsDOMAttributeMap(Element* aContent)
|
1999-01-12 08:45:23 +00:00
|
|
|
: mContent(aContent)
|
|
|
|
{
|
|
|
|
// We don't add a reference to our content. If it goes away,
|
|
|
|
// we'll be told to drop our reference
|
2005-06-01 13:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear map pointer for attributes.
|
|
|
|
*/
|
|
|
|
PLDHashOperator
|
2013-04-09 15:29:44 +00:00
|
|
|
RemoveMapRef(nsAttrHashKey::KeyType aKey, nsRefPtr<Attr>& aData,
|
2010-04-19 15:41:39 +00:00
|
|
|
void* aUserArg)
|
2005-06-01 13:46:20 +00:00
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
aData->SetMap(nullptr);
|
2005-06-01 13:46:20 +00:00
|
|
|
|
|
|
|
return PL_DHASH_REMOVE;
|
|
|
|
}
|
|
|
|
|
1999-01-12 08:45:23 +00:00
|
|
|
nsDOMAttributeMap::~nsDOMAttributeMap()
|
|
|
|
{
|
2015-02-03 08:03:28 +00:00
|
|
|
mAttributeCache.Enumerate(RemoveMapRef, nullptr);
|
1999-01-12 08:45:23 +00:00
|
|
|
}
|
|
|
|
|
2000-04-13 23:42:52 +00:00
|
|
|
void
|
1999-01-12 08:45:23 +00:00
|
|
|
nsDOMAttributeMap::DropReference()
|
|
|
|
{
|
2015-02-03 08:03:28 +00:00
|
|
|
mAttributeCache.Enumerate(RemoveMapRef, nullptr);
|
2012-07-30 14:20:58 +00:00
|
|
|
mContent = nullptr;
|
1999-01-12 08:45:23 +00:00
|
|
|
}
|
|
|
|
|
2013-08-02 01:29:05 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(nsDOMAttributeMap)
|
|
|
|
|
2007-02-18 14:38:04 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsDOMAttributeMap)
|
2007-01-04 22:31:26 +00:00
|
|
|
tmp->DropReference();
|
2013-04-26 06:48:27 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_PRESERVED_WRAPPER
|
2013-05-06 23:37:47 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mContent)
|
2007-01-04 22:31:26 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
|
|
|
|
PLDHashOperator
|
2013-04-09 15:29:44 +00:00
|
|
|
TraverseMapEntry(nsAttrHashKey::KeyType aKey, nsRefPtr<Attr>& aData,
|
2010-04-19 15:41:39 +00:00
|
|
|
void* aUserArg)
|
2007-01-04 22:31:26 +00:00
|
|
|
{
|
|
|
|
nsCycleCollectionTraversalCallback *cb =
|
2007-07-08 07:08:04 +00:00
|
|
|
static_cast<nsCycleCollectionTraversalCallback*>(aUserArg);
|
2007-01-04 22:31:26 +00:00
|
|
|
|
2010-04-19 15:41:39 +00:00
|
|
|
cb->NoteXPCOMChild(static_cast<nsINode*>(aData.get()));
|
2007-01-04 22:31:26 +00:00
|
|
|
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
2007-02-18 14:38:04 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsDOMAttributeMap)
|
2015-02-03 08:03:28 +00:00
|
|
|
tmp->mAttributeCache.Enumerate(TraverseMapEntry, &cb);
|
2013-04-26 06:48:27 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTS
|
2013-05-06 23:37:47 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mContent)
|
2007-01-04 22:31:26 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2013-04-26 06:48:27 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_WRAPPERCACHE(nsDOMAttributeMap)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 16:46:42 +00:00
|
|
|
|
2013-05-06 23:37:47 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_BEGIN(nsDOMAttributeMap)
|
|
|
|
if (tmp->IsBlack()) {
|
|
|
|
if (tmp->mContent) {
|
|
|
|
// The map owns the element so we can mark it when the
|
|
|
|
// map itself is certainly alive.
|
|
|
|
mozilla::dom::FragmentOrElement::MarkNodeChildren(tmp->mContent);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (tmp->mContent &&
|
|
|
|
mozilla::dom::FragmentOrElement::CanSkip(tmp->mContent, true)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_IN_CC_BEGIN(nsDOMAttributeMap)
|
|
|
|
return tmp->IsBlackAndDoesNotNeedTracing(tmp);
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_IN_CC_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_THIS_BEGIN(nsDOMAttributeMap)
|
|
|
|
return tmp->IsBlack();
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_THIS_END
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 16:46:42 +00:00
|
|
|
// QueryInterface implementation for nsDOMAttributeMap
|
2008-11-03 10:31:47 +00:00
|
|
|
NS_INTERFACE_TABLE_HEAD(nsDOMAttributeMap)
|
2014-04-27 07:06:00 +00:00
|
|
|
NS_INTERFACE_TABLE(nsDOMAttributeMap, nsIDOMMozNamedAttrMap)
|
2013-04-26 06:48:27 +00:00
|
|
|
NS_INTERFACE_TABLE_TO_MAP_SEGUE
|
2014-08-25 23:21:35 +00:00
|
|
|
NS_WRAPPERCACHE_INTERFACE_TABLE_ENTRY
|
2008-11-03 10:31:47 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRIES_CYCLE_COLLECTION(nsDOMAttributeMap)
|
2000-04-13 23:42:52 +00:00
|
|
|
NS_INTERFACE_MAP_END
|
1999-01-12 08:45:23 +00:00
|
|
|
|
2007-01-04 22:31:26 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsDOMAttributeMap)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsDOMAttributeMap)
|
1999-01-12 08:45:23 +00:00
|
|
|
|
2005-12-29 03:01:58 +00:00
|
|
|
PLDHashOperator
|
2010-04-19 15:41:39 +00:00
|
|
|
SetOwnerDocumentFunc(nsAttrHashKey::KeyType aKey,
|
2013-04-09 15:29:44 +00:00
|
|
|
nsRefPtr<Attr>& aData,
|
2005-12-29 03:01:58 +00:00
|
|
|
void* aUserArg)
|
|
|
|
{
|
2010-04-19 15:41:39 +00:00
|
|
|
nsresult rv = aData->SetOwnerDocument(static_cast<nsIDocument*>(aUserArg));
|
2005-12-29 03:01:58 +00:00
|
|
|
|
|
|
|
return NS_FAILED(rv) ? PL_DHASH_STOP : PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsDOMAttributeMap::SetOwnerDocument(nsIDocument* aDocument)
|
|
|
|
{
|
2015-02-03 08:03:28 +00:00
|
|
|
uint32_t n = mAttributeCache.Enumerate(SetOwnerDocumentFunc, aDocument);
|
|
|
|
NS_ENSURE_TRUE(n == mAttributeCache.Count(), NS_ERROR_FAILURE);
|
|
|
|
|
2005-12-29 03:01:58 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-06-01 13:46:20 +00:00
|
|
|
|
|
|
|
void
|
2012-08-22 15:56:38 +00:00
|
|
|
nsDOMAttributeMap::DropAttribute(int32_t aNamespaceID, nsIAtom* aLocalName)
|
2005-06-01 13:46:20 +00:00
|
|
|
{
|
2005-06-09 20:17:40 +00:00
|
|
|
nsAttrKey attr(aNamespaceID, aLocalName);
|
2015-02-03 08:03:28 +00:00
|
|
|
Attr *node = mAttributeCache.GetWeak(attr);
|
|
|
|
if (node) {
|
|
|
|
// Break link to map
|
|
|
|
node->SetMap(nullptr);
|
|
|
|
|
|
|
|
// Remove from cache
|
|
|
|
mAttributeCache.Remove(attr);
|
2005-06-01 13:46:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-09 15:29:44 +00:00
|
|
|
already_AddRefed<Attr>
|
2014-06-20 02:01:40 +00:00
|
|
|
nsDOMAttributeMap::RemoveAttribute(mozilla::dom::NodeInfo* aNodeInfo)
|
2005-06-01 13:46:20 +00:00
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_ASSERTION(aNodeInfo, "RemoveAttribute() called with aNodeInfo == nullptr!");
|
2005-06-01 13:46:20 +00:00
|
|
|
|
2005-06-09 20:17:40 +00:00
|
|
|
nsAttrKey attr(aNodeInfo->NamespaceID(), aNodeInfo->NameAtom());
|
2005-06-01 13:46:20 +00:00
|
|
|
|
2013-04-09 15:29:44 +00:00
|
|
|
nsRefPtr<Attr> node;
|
2015-02-03 08:03:28 +00:00
|
|
|
if (!mAttributeCache.Get(attr, getter_AddRefs(node))) {
|
2005-06-01 13:46:20 +00:00
|
|
|
nsAutoString value;
|
2008-10-22 14:31:14 +00:00
|
|
|
// As we are removing the attribute we need to set the current value in
|
|
|
|
// the attribute node.
|
|
|
|
mContent->GetAttr(aNodeInfo->NamespaceID(), aNodeInfo->NameAtom(), value);
|
2014-06-20 02:01:40 +00:00
|
|
|
nsRefPtr<mozilla::dom::NodeInfo> ni = aNodeInfo;
|
2013-04-09 15:29:44 +00:00
|
|
|
node = new Attr(nullptr, ni.forget(), value, true);
|
2005-06-01 13:46:20 +00:00
|
|
|
}
|
2015-02-03 08:03:28 +00:00
|
|
|
else {
|
|
|
|
// Break link to map
|
|
|
|
node->SetMap(nullptr);
|
|
|
|
|
|
|
|
// Remove from cache
|
|
|
|
mAttributeCache.Remove(attr);
|
|
|
|
}
|
2005-06-01 13:46:20 +00:00
|
|
|
|
2012-10-16 11:51:00 +00:00
|
|
|
return node.forget();
|
2005-06-01 13:46:20 +00:00
|
|
|
}
|
|
|
|
|
2013-04-09 15:29:44 +00:00
|
|
|
Attr*
|
2014-06-20 02:01:40 +00:00
|
|
|
nsDOMAttributeMap::GetAttribute(mozilla::dom::NodeInfo* aNodeInfo, bool aNsAware)
|
2008-10-22 14:31:14 +00:00
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_ASSERTION(aNodeInfo, "GetAttribute() called with aNodeInfo == nullptr!");
|
2008-10-22 14:31:14 +00:00
|
|
|
|
|
|
|
nsAttrKey attr(aNodeInfo->NamespaceID(), aNodeInfo->NameAtom());
|
|
|
|
|
2015-02-03 08:03:28 +00:00
|
|
|
Attr* node = mAttributeCache.GetWeak(attr);
|
2008-10-22 14:31:14 +00:00
|
|
|
if (!node) {
|
2014-06-20 02:01:40 +00:00
|
|
|
nsRefPtr<mozilla::dom::NodeInfo> ni = aNodeInfo;
|
2013-04-09 15:29:44 +00:00
|
|
|
nsRefPtr<Attr> newAttr =
|
|
|
|
new Attr(this, ni.forget(), EmptyString(), aNsAware);
|
2015-02-03 08:03:28 +00:00
|
|
|
mAttributeCache.Put(attr, newAttr);
|
2012-05-18 17:30:49 +00:00
|
|
|
node = newAttr;
|
2008-10-22 14:31:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2013-04-09 15:29:44 +00:00
|
|
|
Attr*
|
2013-04-26 06:48:23 +00:00
|
|
|
nsDOMAttributeMap::NamedGetter(const nsAString& aAttrName, bool& aFound)
|
1999-01-12 08:45:23 +00:00
|
|
|
{
|
2013-04-26 06:48:23 +00:00
|
|
|
aFound = false;
|
2013-04-26 06:48:15 +00:00
|
|
|
NS_ENSURE_TRUE(mContent, nullptr);
|
|
|
|
|
2014-06-20 02:01:40 +00:00
|
|
|
nsRefPtr<mozilla::dom::NodeInfo> ni = mContent->GetExistingAttrNameFromQName(aAttrName);
|
2013-04-26 06:48:15 +00:00
|
|
|
if (!ni) {
|
|
|
|
return nullptr;
|
1999-01-12 08:45:23 +00:00
|
|
|
}
|
|
|
|
|
2013-04-26 06:48:23 +00:00
|
|
|
aFound = true;
|
2013-04-26 06:48:15 +00:00
|
|
|
return GetAttribute(ni, false);
|
2008-10-31 21:40:35 +00:00
|
|
|
}
|
|
|
|
|
2014-04-16 02:58:44 +00:00
|
|
|
bool
|
|
|
|
nsDOMAttributeMap::NameIsEnumerable(const nsAString& aName)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-04-26 06:48:23 +00:00
|
|
|
Attr*
|
|
|
|
nsDOMAttributeMap::GetNamedItem(const nsAString& aAttrName)
|
|
|
|
{
|
|
|
|
bool dummy;
|
|
|
|
return NamedGetter(aAttrName, dummy);
|
|
|
|
}
|
|
|
|
|
2008-10-31 21:40:35 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMAttributeMap::GetNamedItem(const nsAString& aAttrName,
|
2013-03-10 08:00:33 +00:00
|
|
|
nsIDOMAttr** aAttribute)
|
2008-10-31 21:40:35 +00:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aAttribute);
|
|
|
|
|
2012-10-16 11:51:00 +00:00
|
|
|
NS_IF_ADDREF(*aAttribute = GetNamedItem(aAttrName));
|
2008-10-31 21:40:35 +00:00
|
|
|
|
2012-10-16 11:51:00 +00:00
|
|
|
return NS_OK;
|
1999-01-12 08:45:23 +00:00
|
|
|
}
|
|
|
|
|
2003-09-23 13:46:20 +00:00
|
|
|
NS_IMETHODIMP
|
2014-08-12 17:55:29 +00:00
|
|
|
nsDOMAttributeMap::SetNamedItem(nsIDOMAttr* aAttr, nsIDOMAttr** aReturn)
|
1999-01-12 08:45:23 +00:00
|
|
|
{
|
2014-08-12 17:55:29 +00:00
|
|
|
Attr* attribute = static_cast<Attr*>(aAttr);
|
2013-04-26 06:48:23 +00:00
|
|
|
NS_ENSURE_ARG(attribute);
|
|
|
|
|
2012-10-16 11:51:00 +00:00
|
|
|
ErrorResult rv;
|
2014-03-15 19:00:15 +00:00
|
|
|
*aReturn = SetNamedItem(*attribute, rv).take();
|
2012-10-16 11:51:00 +00:00
|
|
|
return rv.ErrorCode();
|
2005-06-01 13:46:20 +00:00
|
|
|
}
|
1999-01-12 08:45:23 +00:00
|
|
|
|
2005-06-01 13:46:20 +00:00
|
|
|
NS_IMETHODIMP
|
2014-08-12 17:55:29 +00:00
|
|
|
nsDOMAttributeMap::SetNamedItemNS(nsIDOMAttr* aAttr, nsIDOMAttr** aReturn)
|
2005-06-01 13:46:20 +00:00
|
|
|
{
|
2014-08-12 17:55:29 +00:00
|
|
|
Attr* attribute = static_cast<Attr*>(aAttr);
|
2013-04-26 06:48:23 +00:00
|
|
|
NS_ENSURE_ARG(attribute);
|
|
|
|
|
2012-10-16 11:51:00 +00:00
|
|
|
ErrorResult rv;
|
2014-03-15 19:00:15 +00:00
|
|
|
*aReturn = SetNamedItemNS(*attribute, rv).take();
|
2012-10-16 11:51:00 +00:00
|
|
|
return rv.ErrorCode();
|
2005-06-01 13:46:20 +00:00
|
|
|
}
|
|
|
|
|
2013-04-09 15:29:44 +00:00
|
|
|
already_AddRefed<Attr>
|
2013-04-26 06:48:23 +00:00
|
|
|
nsDOMAttributeMap::SetNamedItemInternal(Attr& aAttr,
|
2012-10-16 11:51:00 +00:00
|
|
|
bool aWithNS,
|
|
|
|
ErrorResult& aError)
|
2005-06-01 13:46:20 +00:00
|
|
|
{
|
2013-04-26 06:48:15 +00:00
|
|
|
NS_ENSURE_TRUE(mContent, nullptr);
|
|
|
|
|
|
|
|
// XXX should check same-origin between mContent and aAttr however
|
|
|
|
// nsContentUtils::CheckSameOrigin can't deal with attributenodes yet
|
2005-12-29 03:01:58 +00:00
|
|
|
|
2013-04-26 06:48:15 +00:00
|
|
|
// Check that attribute is not owned by somebody else
|
2013-04-26 06:48:23 +00:00
|
|
|
nsDOMAttributeMap* owner = aAttr.GetMap();
|
2013-04-26 06:48:15 +00:00
|
|
|
if (owner) {
|
|
|
|
if (owner != this) {
|
|
|
|
aError.Throw(NS_ERROR_DOM_INUSE_ATTRIBUTE_ERR);
|
|
|
|
return nullptr;
|
2003-09-23 13:46:20 +00:00
|
|
|
}
|
|
|
|
|
2013-04-26 06:48:15 +00:00
|
|
|
// setting a preexisting attribute is a no-op, just return the same
|
|
|
|
// node.
|
2013-04-26 06:48:23 +00:00
|
|
|
nsRefPtr<Attr> attribute = &aAttr;
|
|
|
|
return attribute.forget();
|
2013-04-26 06:48:15 +00:00
|
|
|
}
|
2008-02-22 02:18:43 +00:00
|
|
|
|
2013-04-26 06:48:15 +00:00
|
|
|
nsresult rv;
|
2013-08-02 10:24:41 +00:00
|
|
|
if (mContent->OwnerDoc() != aAttr.OwnerDoc()) {
|
2013-04-26 06:48:23 +00:00
|
|
|
nsCOMPtr<nsINode> adoptedNode =
|
|
|
|
mContent->OwnerDoc()->AdoptNode(aAttr, aError);
|
|
|
|
if (aError.Failed()) {
|
2013-04-26 06:48:15 +00:00
|
|
|
return nullptr;
|
2005-12-29 03:01:58 +00:00
|
|
|
}
|
|
|
|
|
2013-04-26 06:48:23 +00:00
|
|
|
NS_ASSERTION(adoptedNode == &aAttr, "Uh, adopt node changed nodes?");
|
2013-04-26 06:48:15 +00:00
|
|
|
}
|
2000-04-13 23:42:52 +00:00
|
|
|
|
2013-04-26 06:48:15 +00:00
|
|
|
// Get nodeinfo and preexisting attribute (if it exists)
|
2015-01-15 04:12:00 +00:00
|
|
|
nsRefPtr<NodeInfo> oldNi;
|
|
|
|
|
|
|
|
if (!aWithNS) {
|
|
|
|
nsAutoString name;
|
|
|
|
aAttr.GetName(name);
|
|
|
|
oldNi = mContent->GetExistingAttrNameFromQName(name);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
uint32_t i, count = mContent->GetAttrCount();
|
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
const nsAttrName* name = mContent->GetAttrNameAt(i);
|
|
|
|
int32_t attrNS = name->NamespaceID();
|
|
|
|
nsIAtom* nameAtom = name->LocalName();
|
|
|
|
|
|
|
|
// we're purposefully ignoring the prefix.
|
|
|
|
if (aAttr.NodeInfo()->Equals(nameAtom, attrNS)) {
|
|
|
|
oldNi = mContent->NodeInfo()->NodeInfoManager()->
|
|
|
|
GetNodeInfo(nameAtom, name->GetPrefix(), aAttr.NodeInfo()->NamespaceID(),
|
|
|
|
nsIDOMNode::ATTRIBUTE_NODE);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-04-13 23:42:52 +00:00
|
|
|
|
2013-04-26 06:48:15 +00:00
|
|
|
nsRefPtr<Attr> attr;
|
|
|
|
|
2015-01-15 04:12:00 +00:00
|
|
|
if (oldNi) {
|
|
|
|
nsRefPtr<Attr> oldAttr = GetAttribute(oldNi, true);
|
2005-12-29 03:01:58 +00:00
|
|
|
|
2015-01-15 04:12:00 +00:00
|
|
|
if (oldAttr == &aAttr) {
|
|
|
|
return oldAttr.forget();
|
2013-04-26 06:48:15 +00:00
|
|
|
}
|
|
|
|
|
2015-01-15 04:12:00 +00:00
|
|
|
if (oldAttr) {
|
|
|
|
attr = RemoveNamedItem(oldNi, aError);
|
|
|
|
NS_ASSERTION(attr->NodeInfo()->NameAndNamespaceEquals(oldNi),
|
|
|
|
"RemoveNamedItem() called, attr->NodeInfo() should be equal to oldNi!");
|
2005-06-01 13:46:20 +00:00
|
|
|
}
|
2013-04-26 06:48:15 +00:00
|
|
|
}
|
2006-12-20 20:55:08 +00:00
|
|
|
|
2013-04-26 06:48:15 +00:00
|
|
|
nsAutoString value;
|
2013-04-26 06:48:23 +00:00
|
|
|
aAttr.GetValue(value);
|
2006-12-20 20:55:08 +00:00
|
|
|
|
2015-01-15 04:12:00 +00:00
|
|
|
nsRefPtr<NodeInfo> ni = aAttr.NodeInfo();
|
|
|
|
|
2013-04-26 06:48:15 +00:00
|
|
|
// Add the new attribute to the attribute map before updating
|
|
|
|
// its value in the element. @see bug 364413.
|
|
|
|
nsAttrKey attrkey(ni->NamespaceID(), ni->NameAtom());
|
2015-02-03 08:03:28 +00:00
|
|
|
mAttributeCache.Put(attrkey, &aAttr);
|
2013-04-26 06:48:23 +00:00
|
|
|
aAttr.SetMap(this);
|
2000-04-13 23:42:52 +00:00
|
|
|
|
2013-04-26 06:48:15 +00:00
|
|
|
rv = mContent->SetAttr(ni->NamespaceID(), ni->NameAtom(),
|
|
|
|
ni->GetPrefixAtom(), value, true);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
aError.Throw(rv);
|
|
|
|
DropAttribute(ni->NamespaceID(), ni->NameAtom());
|
2012-10-16 11:51:00 +00:00
|
|
|
}
|
2005-06-01 13:46:20 +00:00
|
|
|
|
2013-04-26 06:48:15 +00:00
|
|
|
return attr.forget();
|
1999-01-12 08:45:23 +00:00
|
|
|
}
|
|
|
|
|
2015-01-15 04:12:00 +00:00
|
|
|
already_AddRefed<Attr>
|
|
|
|
nsDOMAttributeMap::RemoveNamedItem(NodeInfo* aNodeInfo, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
nsRefPtr<Attr> attribute = GetAttribute(aNodeInfo, true);
|
|
|
|
// This removes the attribute node from the attribute map.
|
|
|
|
aError = mContent->UnsetAttr(aNodeInfo->NamespaceID(), aNodeInfo->NameAtom(), true);
|
|
|
|
return attribute.forget();
|
|
|
|
}
|
|
|
|
|
1999-01-12 08:45:23 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-23 23:54:46 +00:00
|
|
|
nsDOMAttributeMap::RemoveNamedItem(const nsAString& aName,
|
2013-03-10 08:00:33 +00:00
|
|
|
nsIDOMAttr** aReturn)
|
1999-01-12 08:45:23 +00:00
|
|
|
{
|
2000-04-13 23:42:52 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aReturn);
|
|
|
|
|
2013-04-26 06:48:23 +00:00
|
|
|
ErrorResult rv;
|
2014-03-15 19:00:15 +00:00
|
|
|
*aReturn = RemoveNamedItem(aName, rv).take();
|
2013-04-26 06:48:23 +00:00
|
|
|
return rv.ErrorCode();
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Attr>
|
|
|
|
nsDOMAttributeMap::RemoveNamedItem(const nsAString& aName, ErrorResult& aError)
|
|
|
|
{
|
2013-05-06 23:37:47 +00:00
|
|
|
if (!mContent) {
|
|
|
|
aError.Throw(NS_ERROR_DOM_NOT_FOUND_ERR);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2000-04-13 23:42:52 +00:00
|
|
|
|
2014-06-20 02:01:40 +00:00
|
|
|
nsRefPtr<mozilla::dom::NodeInfo> ni = mContent->GetExistingAttrNameFromQName(aName);
|
2013-04-26 06:48:15 +00:00
|
|
|
if (!ni) {
|
2013-04-26 06:48:23 +00:00
|
|
|
aError.Throw(NS_ERROR_DOM_NOT_FOUND_ERR);
|
|
|
|
return nullptr;
|
1999-01-12 08:45:23 +00:00
|
|
|
}
|
|
|
|
|
2015-01-15 04:12:00 +00:00
|
|
|
return RemoveNamedItem(ni, aError);
|
1999-01-12 08:45:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-09 15:29:44 +00:00
|
|
|
Attr*
|
2013-04-26 06:48:23 +00:00
|
|
|
nsDOMAttributeMap::IndexedGetter(uint32_t aIndex, bool& aFound)
|
1999-01-12 08:45:23 +00:00
|
|
|
{
|
2013-04-26 06:48:23 +00:00
|
|
|
aFound = false;
|
2013-04-26 06:48:15 +00:00
|
|
|
NS_ENSURE_TRUE(mContent, nullptr);
|
2000-04-13 23:42:52 +00:00
|
|
|
|
2013-04-26 06:48:15 +00:00
|
|
|
const nsAttrName* name = mContent->GetAttrNameAt(aIndex);
|
|
|
|
NS_ENSURE_TRUE(name, nullptr);
|
|
|
|
|
2013-04-26 06:48:23 +00:00
|
|
|
aFound = true;
|
|
|
|
// Don't use the nodeinfo even if one exists since it can have the wrong
|
|
|
|
// owner document.
|
2014-06-20 02:01:40 +00:00
|
|
|
nsRefPtr<mozilla::dom::NodeInfo> ni = mContent->NodeInfo()->NodeInfoManager()->
|
2013-04-26 06:48:15 +00:00
|
|
|
GetNodeInfo(name->LocalName(), name->GetPrefix(), name->NamespaceID(),
|
|
|
|
nsIDOMNode::ATTRIBUTE_NODE);
|
|
|
|
return GetAttribute(ni, true);
|
2008-10-22 14:31:14 +00:00
|
|
|
}
|
2005-12-28 21:52:39 +00:00
|
|
|
|
2013-04-26 06:48:23 +00:00
|
|
|
Attr*
|
|
|
|
nsDOMAttributeMap::Item(uint32_t aIndex)
|
|
|
|
{
|
|
|
|
bool dummy;
|
|
|
|
return IndexedGetter(aIndex, dummy);
|
|
|
|
}
|
|
|
|
|
2008-10-22 14:31:14 +00:00
|
|
|
NS_IMETHODIMP
|
2013-03-10 08:00:33 +00:00
|
|
|
nsDOMAttributeMap::Item(uint32_t aIndex, nsIDOMAttr** aReturn)
|
2008-10-22 14:31:14 +00:00
|
|
|
{
|
2013-04-26 06:48:23 +00:00
|
|
|
NS_IF_ADDREF(*aReturn = Item(aIndex));
|
2013-04-04 12:01:11 +00:00
|
|
|
return NS_OK;
|
1999-01-12 08:45:23 +00:00
|
|
|
}
|
|
|
|
|
2013-04-26 06:48:23 +00:00
|
|
|
uint32_t
|
|
|
|
nsDOMAttributeMap::Length() const
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mContent, 0);
|
|
|
|
|
|
|
|
return mContent->GetAttrCount();
|
|
|
|
}
|
|
|
|
|
1999-01-12 08:45:23 +00:00
|
|
|
nsresult
|
2012-08-22 15:56:38 +00:00
|
|
|
nsDOMAttributeMap::GetLength(uint32_t *aLength)
|
1999-01-12 08:45:23 +00:00
|
|
|
{
|
2000-04-13 23:42:52 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aLength);
|
2013-04-26 06:48:23 +00:00
|
|
|
*aLength = Length();
|
2003-09-27 04:18:26 +00:00
|
|
|
return NS_OK;
|
1999-01-12 08:45:23 +00:00
|
|
|
}
|
1999-10-07 00:35:04 +00:00
|
|
|
|
2003-09-23 13:46:20 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-23 23:54:46 +00:00
|
|
|
nsDOMAttributeMap::GetNamedItemNS(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aLocalName,
|
2013-03-10 08:00:33 +00:00
|
|
|
nsIDOMAttr** aReturn)
|
2005-06-01 13:46:20 +00:00
|
|
|
{
|
2013-04-04 12:01:11 +00:00
|
|
|
NS_IF_ADDREF(*aReturn = GetNamedItemNS(aNamespaceURI, aLocalName));
|
|
|
|
return NS_OK;
|
2005-06-01 13:46:20 +00:00
|
|
|
}
|
|
|
|
|
2013-04-09 15:29:44 +00:00
|
|
|
Attr*
|
2012-10-16 11:51:00 +00:00
|
|
|
nsDOMAttributeMap::GetNamedItemNS(const nsAString& aNamespaceURI,
|
2013-04-04 12:01:11 +00:00
|
|
|
const nsAString& aLocalName)
|
2000-04-13 21:21:02 +00:00
|
|
|
{
|
2014-06-20 02:01:40 +00:00
|
|
|
nsRefPtr<mozilla::dom::NodeInfo> ni = GetAttrNodeInfo(aNamespaceURI, aLocalName);
|
2012-10-16 11:51:00 +00:00
|
|
|
if (!ni) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GetAttribute(ni, true);
|
|
|
|
}
|
2000-06-23 00:21:32 +00:00
|
|
|
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>
|
2012-10-16 11:51:00 +00:00
|
|
|
nsDOMAttributeMap::GetAttrNodeInfo(const nsAString& aNamespaceURI,
|
2013-04-04 12:01:11 +00:00
|
|
|
const nsAString& aLocalName)
|
2012-10-16 11:51:00 +00:00
|
|
|
{
|
2004-01-15 17:07:27 +00:00
|
|
|
if (!mContent) {
|
2012-10-16 11:51:00 +00:00
|
|
|
return nullptr;
|
2004-01-15 17:07:27 +00:00
|
|
|
}
|
2000-06-23 00:21:32 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t nameSpaceID = kNameSpaceID_None;
|
2000-06-23 00:21:32 +00:00
|
|
|
|
2004-01-15 17:07:27 +00:00
|
|
|
if (!aNamespaceURI.IsEmpty()) {
|
2005-09-11 11:24:16 +00:00
|
|
|
nameSpaceID =
|
|
|
|
nsContentUtils::NameSpaceManager()->GetNameSpaceID(aNamespaceURI);
|
2000-06-23 00:21:32 +00:00
|
|
|
|
2004-01-15 17:07:27 +00:00
|
|
|
if (nameSpaceID == kNameSpaceID_Unknown) {
|
2012-10-16 11:51:00 +00:00
|
|
|
return nullptr;
|
2000-06-23 00:21:32 +00:00
|
|
|
}
|
2004-01-15 17:07:27 +00:00
|
|
|
}
|
2000-06-23 00:21:32 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t i, count = mContent->GetAttrCount();
|
2004-01-15 17:07:27 +00:00
|
|
|
for (i = 0; i < count; ++i) {
|
2005-12-28 21:52:39 +00:00
|
|
|
const nsAttrName* name = mContent->GetAttrNameAt(i);
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t attrNS = name->NamespaceID();
|
2005-12-28 21:52:39 +00:00
|
|
|
nsIAtom* nameAtom = name->LocalName();
|
|
|
|
|
2015-01-15 04:12:00 +00:00
|
|
|
// we're purposefully ignoring the prefix.
|
2004-01-15 17:07:27 +00:00
|
|
|
if (nameSpaceID == attrNS &&
|
2010-03-08 15:45:00 +00:00
|
|
|
nameAtom->Equals(aLocalName)) {
|
2014-06-20 02:01:40 +00:00
|
|
|
nsRefPtr<mozilla::dom::NodeInfo> ni;
|
2008-09-12 22:32:18 +00:00
|
|
|
ni = mContent->NodeInfo()->NodeInfoManager()->
|
2011-06-14 07:56:49 +00:00
|
|
|
GetNodeInfo(nameAtom, name->GetPrefix(), nameSpaceID,
|
|
|
|
nsIDOMNode::ATTRIBUTE_NODE);
|
2010-04-19 15:41:39 +00:00
|
|
|
|
2012-10-16 11:51:00 +00:00
|
|
|
return ni.forget();
|
2000-06-23 00:21:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-16 11:51:00 +00:00
|
|
|
return nullptr;
|
2000-04-13 21:21:02 +00:00
|
|
|
}
|
|
|
|
|
2003-09-23 13:46:20 +00:00
|
|
|
NS_IMETHODIMP
|
2002-03-23 23:54:46 +00:00
|
|
|
nsDOMAttributeMap::RemoveNamedItemNS(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aLocalName,
|
2013-03-10 08:00:33 +00:00
|
|
|
nsIDOMAttr** aReturn)
|
2000-04-13 21:21:02 +00:00
|
|
|
{
|
2000-06-23 00:21:32 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aReturn);
|
2013-04-26 06:48:23 +00:00
|
|
|
ErrorResult rv;
|
2014-03-15 19:00:15 +00:00
|
|
|
*aReturn = RemoveNamedItemNS(aNamespaceURI, aLocalName, rv).take();
|
2013-04-26 06:48:23 +00:00
|
|
|
return rv.ErrorCode();
|
|
|
|
}
|
2000-06-23 00:21:32 +00:00
|
|
|
|
2013-04-26 06:48:23 +00:00
|
|
|
already_AddRefed<Attr>
|
|
|
|
nsDOMAttributeMap::RemoveNamedItemNS(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aLocalName,
|
|
|
|
ErrorResult& aError)
|
|
|
|
{
|
2014-06-20 02:01:40 +00:00
|
|
|
nsRefPtr<mozilla::dom::NodeInfo> ni = GetAttrNodeInfo(aNamespaceURI, aLocalName);
|
2012-10-16 11:51:00 +00:00
|
|
|
if (!ni) {
|
2013-04-26 06:48:23 +00:00
|
|
|
aError.Throw(NS_ERROR_DOM_NOT_FOUND_ERR);
|
|
|
|
return nullptr;
|
2004-01-15 17:07:27 +00:00
|
|
|
}
|
2000-06-23 00:21:32 +00:00
|
|
|
|
2015-01-15 04:12:00 +00:00
|
|
|
return RemoveNamedItem(ni, aError);
|
2000-04-13 21:21:02 +00:00
|
|
|
}
|
2006-07-29 16:02:11 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t
|
2006-07-29 16:02:11 +00:00
|
|
|
nsDOMAttributeMap::Count() const
|
|
|
|
{
|
2015-02-03 08:03:28 +00:00
|
|
|
return mAttributeCache.Count();
|
2006-07-29 16:02:11 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t
|
2006-07-29 16:02:11 +00:00
|
|
|
nsDOMAttributeMap::Enumerate(AttrCache::EnumReadFunction aFunc,
|
|
|
|
void *aUserArg) const
|
|
|
|
{
|
2015-02-03 08:03:28 +00:00
|
|
|
return mAttributeCache.EnumerateRead(aFunc, aUserArg);
|
2006-07-29 16:02:11 +00:00
|
|
|
}
|
2012-09-30 16:43:47 +00:00
|
|
|
|
|
|
|
size_t
|
|
|
|
AttrCacheSizeEnumerator(const nsAttrKey& aKey,
|
2013-04-09 15:29:44 +00:00
|
|
|
const nsRefPtr<Attr>& aValue,
|
2013-06-23 12:03:39 +00:00
|
|
|
MallocSizeOf aMallocSizeOf,
|
2012-09-30 16:43:47 +00:00
|
|
|
void* aUserArg)
|
|
|
|
{
|
|
|
|
return aMallocSizeOf(aValue.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
2013-06-23 12:03:39 +00:00
|
|
|
nsDOMAttributeMap::SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const
|
2012-09-30 16:43:47 +00:00
|
|
|
{
|
|
|
|
size_t n = aMallocSizeOf(this);
|
2015-02-03 08:03:28 +00:00
|
|
|
n += mAttributeCache.SizeOfExcludingThis(AttrCacheSizeEnumerator,
|
|
|
|
aMallocSizeOf);
|
2012-09-30 16:43:47 +00:00
|
|
|
|
|
|
|
// NB: mContent is non-owning and thus not counted.
|
|
|
|
return n;
|
|
|
|
}
|
2013-04-26 06:48:27 +00:00
|
|
|
|
|
|
|
/* virtual */ 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
|
|
|
nsDOMAttributeMap::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2013-04-26 06:48:27 +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 NamedNodeMapBinding::Wrap(aCx, this, aGivenProto);
|
2013-04-26 06:48:27 +00:00
|
|
|
}
|