2015-05-03 22:32:37 +03: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 15:12:37 +04: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/. */
|
2010-07-17 01:42:12 +04:00
|
|
|
|
|
|
|
#include "DOMSVGLengthList.h"
|
2018-12-28 05:47:10 +03:00
|
|
|
|
|
|
|
#include "SVGElement.h"
|
2010-07-17 01:42:12 +04:00
|
|
|
#include "DOMSVGLength.h"
|
2012-07-27 18:03:27 +04:00
|
|
|
#include "nsError.h"
|
2010-07-17 01:42:12 +04:00
|
|
|
#include "SVGAnimatedLengthList.h"
|
2012-06-13 19:18:30 +04:00
|
|
|
#include "mozilla/dom/SVGLengthListBinding.h"
|
2013-01-15 16:22:03 +04:00
|
|
|
#include <algorithm>
|
2010-07-17 01:42:12 +04:00
|
|
|
|
|
|
|
// See the comment in this file's header.
|
|
|
|
|
2011-02-16 10:54:04 +03:00
|
|
|
// local helper functions
|
|
|
|
namespace {
|
|
|
|
|
2018-12-28 16:42:46 +03:00
|
|
|
using mozilla::dom::DOMSVGLength;
|
2011-02-16 10:54:04 +03:00
|
|
|
|
2013-03-23 20:47:31 +04:00
|
|
|
void UpdateListIndicesFromIndex(FallibleTArray<DOMSVGLength*>& aItemsArray,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aStartingIndex) {
|
|
|
|
uint32_t length = aItemsArray.Length();
|
2011-02-16 10:54:04 +03:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
for (uint32_t i = aStartingIndex; i < length; ++i) {
|
2011-02-16 10:54:04 +03:00
|
|
|
if (aItemsArray[i]) {
|
|
|
|
aItemsArray[i]->UpdateListIndex(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2010-07-17 01:42:12 +04:00
|
|
|
namespace mozilla {
|
2018-12-28 16:42:46 +03:00
|
|
|
namespace dom {
|
2010-07-17 01:42:12 +04:00
|
|
|
|
2014-04-25 20:49:00 +04:00
|
|
|
// We could use NS_IMPL_CYCLE_COLLECTION(, except that in Unlink() we need to
|
2010-07-17 01:42:12 +04:00
|
|
|
// clear our DOMSVGAnimatedLengthList's weak ref to us to be safe. (The other
|
|
|
|
// option would be to not unlink and rely on the breaking of the other edges in
|
|
|
|
// the cycle, as NS_SVG_VAL_IMPL_CYCLE_COLLECTION does.)
|
2013-08-02 05:29:05 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(DOMSVGLengthList)
|
|
|
|
|
2010-07-17 01:42:12 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(DOMSVGLengthList)
|
2012-07-19 02:44:22 +04:00
|
|
|
if (tmp->mAList) {
|
|
|
|
if (tmp->IsAnimValList()) {
|
2012-07-30 18:20:58 +04:00
|
|
|
tmp->mAList->mAnimVal = nullptr;
|
2012-07-19 02:44:22 +04:00
|
|
|
} else {
|
2012-07-30 18:20:58 +04:00
|
|
|
tmp->mAList->mBaseVal = nullptr;
|
2012-07-19 02:44:22 +04:00
|
|
|
}
|
2012-11-15 11:32:40 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mAList)
|
2012-07-19 02:44:22 +04:00
|
|
|
}
|
2011-08-22 13:14:13 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_PRESERVED_WRAPPER
|
2010-07-17 01:42:12 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(DOMSVGLengthList)
|
2012-11-15 11:32:40 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mAList)
|
2010-07-17 01:42:12 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
2011-08-22 13:14:13 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN(DOMSVGLengthList)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_PRESERVED_WRAPPER
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
2010-07-17 01:42:12 +04:00
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(DOMSVGLengthList)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(DOMSVGLengthList)
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(DOMSVGLengthList)
|
2020-08-25 21:25:52 +03:00
|
|
|
NS_INTERFACE_MAP_ENTRY(DOMSVGLengthList)
|
2011-08-22 13:14:13 +04:00
|
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
2010-07-17 01:42:12 +04:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
2020-04-22 20:26:16 +03:00
|
|
|
void DOMSVGLengthList::IndexedSetter(uint32_t index, DOMSVGLength& newValue,
|
|
|
|
ErrorResult& error) {
|
|
|
|
// Need to take a ref to the return value so it does not leak.
|
|
|
|
RefPtr<DOMSVGLength> ignored = ReplaceItem(newValue, index, error);
|
|
|
|
Unused << ignored;
|
|
|
|
}
|
|
|
|
|
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 17:13:33 +03:00
|
|
|
JSObject* DOMSVGLengthList::WrapObject(JSContext* cx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return mozilla::dom::SVGLengthList_Binding::Wrap(cx, this, aGivenProto);
|
2011-04-08 02:44:03 +04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
void DOMSVGLengthList::InternalListLengthWillChange(uint32_t aNewLength) {
|
|
|
|
uint32_t oldLength = mItems.Length();
|
2010-07-17 01:42:12 +04:00
|
|
|
|
2011-02-08 16:43:34 +03:00
|
|
|
if (aNewLength > DOMSVGLength::MaxListIndex()) {
|
|
|
|
// It's safe to get out of sync with our internal list as long as we have
|
|
|
|
// FEWER items than it does.
|
|
|
|
aNewLength = DOMSVGLength::MaxListIndex();
|
|
|
|
}
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGLengthList> kungFuDeathGrip;
|
2011-07-07 19:48:10 +04:00
|
|
|
if (aNewLength < oldLength) {
|
2011-03-29 19:47:53 +04:00
|
|
|
// RemovingFromList() might clear last reference to |this|.
|
|
|
|
// Retain a temporary reference to keep from dying before returning.
|
|
|
|
kungFuDeathGrip = this;
|
|
|
|
}
|
|
|
|
|
2010-07-17 01:42:12 +04:00
|
|
|
// If our length will decrease, notify the items that will be removed:
|
2012-08-22 19:56:38 +04:00
|
|
|
for (uint32_t i = aNewLength; i < oldLength; ++i) {
|
2010-07-17 01:42:12 +04:00
|
|
|
if (mItems[i]) {
|
|
|
|
mItems[i]->RemovingFromList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-18 23:50:35 +03:00
|
|
|
if (!mItems.SetLength(aNewLength, fallible)) {
|
2011-02-06 12:11:26 +03:00
|
|
|
// We silently ignore SetLength OOM failure since being out of sync is safe
|
|
|
|
// so long as we have *fewer* items than our internal list.
|
2010-07-17 01:42:12 +04:00
|
|
|
mItems.Clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If our length has increased, null out the new pointers:
|
2012-08-22 19:56:38 +04:00
|
|
|
for (uint32_t i = oldLength; i < aNewLength; ++i) {
|
2012-07-30 18:20:58 +04:00
|
|
|
mItems[i] = nullptr;
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-26 14:22:15 +04:00
|
|
|
SVGLengthList& DOMSVGLengthList::InternalList() const {
|
2010-07-17 01:42:12 +04:00
|
|
|
SVGAnimatedLengthList* alist = Element()->GetAnimatedLengthList(AttrEnum());
|
|
|
|
return IsAnimValList() && alist->mAnimVal ? *alist->mAnimVal
|
|
|
|
: alist->mBaseVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2012-09-06 00:49:53 +04:00
|
|
|
void DOMSVGLengthList::Clear(ErrorResult& aError) {
|
2010-07-17 01:42:12 +04:00
|
|
|
if (IsAnimValList()) {
|
2012-09-06 00:49:53 +04:00
|
|
|
aError.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return;
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
|
|
|
|
2012-09-05 18:52:57 +04:00
|
|
|
if (LengthNoFlush() > 0) {
|
2013-12-25 02:09:22 +04:00
|
|
|
AutoChangeLengthListNotifier notifier(this);
|
2010-07-17 01:42:12 +04:00
|
|
|
// Notify any existing DOM items of removal *before* truncating the lists
|
|
|
|
// so that they can find their SVGLength internal counterparts and copy
|
2011-02-16 10:54:26 +03:00
|
|
|
// their values. This also notifies the animVal list:
|
2010-07-17 01:42:12 +04:00
|
|
|
mAList->InternalBaseValListWillChangeTo(SVGLengthList());
|
|
|
|
|
|
|
|
mItems.Clear();
|
|
|
|
InternalList().Clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-12 01:26:29 +04:00
|
|
|
already_AddRefed<DOMSVGLength> DOMSVGLengthList::Initialize(
|
2012-09-06 00:49:53 +04:00
|
|
|
DOMSVGLength& newItem, ErrorResult& error) {
|
2010-07-17 01:42:12 +04:00
|
|
|
if (IsAnimValList()) {
|
2012-09-06 00:49:53 +04:00
|
|
|
error.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return nullptr;
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
|
|
|
|
2014-08-06 03:15:00 +04:00
|
|
|
// If newItem already has an owner or is reflecting an attribute, we should
|
|
|
|
// insert a clone of newItem, and for consistency, this should happen even if
|
|
|
|
// *this* is the list that newItem is currently in. Note that in the case of
|
|
|
|
// newItem being in this list, the Clear() call before the InsertItemBefore()
|
|
|
|
// call would remove it from this list, and so the InsertItemBefore() call
|
|
|
|
// would not insert a clone of newItem, it would actually insert newItem. To
|
|
|
|
// prevent that from happening we have to do the clone here, if necessary.
|
2010-07-17 01:42:12 +04:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGLength> domItem = &newItem;
|
2020-08-25 21:25:52 +03:00
|
|
|
if (domItem->HasOwner()) {
|
2014-04-12 01:26:29 +04:00
|
|
|
domItem = domItem->Copy();
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
|
|
|
|
2012-09-06 00:49:53 +04:00
|
|
|
ErrorResult rv;
|
2012-12-23 08:54:26 +04:00
|
|
|
Clear(rv);
|
|
|
|
MOZ_ASSERT(!rv.Failed());
|
2014-04-12 01:26:29 +04:00
|
|
|
return InsertItemBefore(*domItem, 0, error);
|
2012-09-06 00:49:53 +04:00
|
|
|
}
|
|
|
|
|
2013-07-12 14:25:26 +04:00
|
|
|
already_AddRefed<DOMSVGLength> DOMSVGLengthList::GetItem(uint32_t index,
|
|
|
|
ErrorResult& error) {
|
|
|
|
bool found;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGLength> item = IndexedGetter(index, found, error);
|
2013-07-12 14:25:26 +04:00
|
|
|
if (!found) {
|
|
|
|
error.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
}
|
|
|
|
return item.forget();
|
|
|
|
}
|
|
|
|
|
2012-09-06 00:49:53 +04:00
|
|
|
already_AddRefed<DOMSVGLength> DOMSVGLengthList::IndexedGetter(
|
|
|
|
uint32_t index, bool& found, ErrorResult& error) {
|
|
|
|
if (IsAnimValList()) {
|
|
|
|
Element()->FlushAnimations();
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
2012-09-06 00:49:53 +04:00
|
|
|
found = index < LengthNoFlush();
|
|
|
|
if (found) {
|
2013-07-12 14:25:26 +04:00
|
|
|
return GetItemAt(index);
|
2012-09-06 00:49:53 +04:00
|
|
|
}
|
|
|
|
return nullptr;
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
|
|
|
|
2014-04-12 01:26:29 +04:00
|
|
|
already_AddRefed<DOMSVGLength> DOMSVGLengthList::InsertItemBefore(
|
2012-09-06 00:49:53 +04:00
|
|
|
DOMSVGLength& newItem, uint32_t index, ErrorResult& error) {
|
2010-07-17 01:42:12 +04:00
|
|
|
if (IsAnimValList()) {
|
2012-09-06 00:49:53 +04:00
|
|
|
error.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return nullptr;
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
|
|
|
|
2013-01-15 16:22:03 +04:00
|
|
|
index = std::min(index, LengthNoFlush());
|
2011-02-08 16:43:34 +03:00
|
|
|
if (index >= DOMSVGLength::MaxListIndex()) {
|
2012-09-06 00:49:53 +04:00
|
|
|
error.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
return nullptr;
|
2011-02-08 16:43:34 +03:00
|
|
|
}
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGLength> domItem = &newItem;
|
2020-08-25 21:25:52 +03:00
|
|
|
if (domItem->HasOwner()) {
|
2011-02-06 12:11:26 +03:00
|
|
|
domItem = domItem->Copy(); // must do this before changing anything!
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
2011-02-06 12:11:26 +03:00
|
|
|
|
|
|
|
// Ensure we have enough memory so we can avoid complex error handling below:
|
2015-05-18 23:50:34 +03:00
|
|
|
if (!mItems.SetCapacity(mItems.Length() + 1, fallible) ||
|
2011-02-06 12:11:26 +03:00
|
|
|
!InternalList().SetCapacity(InternalList().Length() + 1)) {
|
2012-09-06 00:49:53 +04:00
|
|
|
error.Throw(NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
return nullptr;
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
2015-11-05 09:32:29 +03:00
|
|
|
if (AnimListMirrorsBaseList()) {
|
|
|
|
if (!mAList->mAnimVal->mItems.SetCapacity(
|
|
|
|
mAList->mAnimVal->mItems.Length() + 1, fallible)) {
|
|
|
|
error.Throw(NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
2011-02-06 12:11:26 +03:00
|
|
|
|
2013-12-25 02:09:22 +04:00
|
|
|
AutoChangeLengthListNotifier notifier(this);
|
2011-02-16 10:54:26 +03:00
|
|
|
// Now that we know we're inserting, keep animVal list in sync as necessary.
|
|
|
|
MaybeInsertNullInAnimValListAt(index);
|
|
|
|
|
2011-02-06 12:11:26 +03:00
|
|
|
InternalList().InsertItem(index, domItem->ToSVGLength());
|
2015-05-28 21:07:43 +03:00
|
|
|
MOZ_ALWAYS_TRUE(mItems.InsertElementAt(index, domItem.get(), fallible));
|
2011-02-06 12:11:26 +03:00
|
|
|
|
|
|
|
// This MUST come after the insertion into InternalList(), or else under the
|
|
|
|
// insertion into InternalList() the values read from domItem would be bad
|
|
|
|
// data from InternalList() itself!:
|
2010-07-17 01:42:12 +04:00
|
|
|
domItem->InsertingIntoList(this, AttrEnum(), index, IsAnimValList());
|
2011-02-06 12:11:26 +03:00
|
|
|
|
2011-02-16 10:54:04 +03:00
|
|
|
UpdateListIndicesFromIndex(mItems, index + 1);
|
2011-02-06 12:11:26 +03:00
|
|
|
|
2012-09-06 00:49:53 +04:00
|
|
|
return domItem.forget();
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
|
|
|
|
2014-04-12 01:26:29 +04:00
|
|
|
already_AddRefed<DOMSVGLength> DOMSVGLengthList::ReplaceItem(
|
2012-09-06 00:49:53 +04:00
|
|
|
DOMSVGLength& newItem, uint32_t index, ErrorResult& error) {
|
2010-07-17 01:42:12 +04:00
|
|
|
if (IsAnimValList()) {
|
2012-09-06 00:49:53 +04:00
|
|
|
error.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return nullptr;
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
|
|
|
|
2012-09-05 18:52:57 +04:00
|
|
|
if (index >= LengthNoFlush()) {
|
2012-09-06 00:49:53 +04:00
|
|
|
error.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
return nullptr;
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
2019-09-20 09:02:10 +03:00
|
|
|
|
|
|
|
RefPtr<DOMSVGLength> domItem = &newItem;
|
2020-08-25 21:25:52 +03:00
|
|
|
if (domItem->HasOwner()) {
|
2011-02-06 12:11:26 +03:00
|
|
|
domItem = domItem->Copy(); // must do this before changing anything!
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
2011-02-06 12:11:26 +03:00
|
|
|
|
2013-12-25 02:09:22 +04:00
|
|
|
AutoChangeLengthListNotifier notifier(this);
|
2010-07-17 01:42:12 +04:00
|
|
|
if (mItems[index]) {
|
|
|
|
// Notify any existing DOM item of removal *before* modifying the lists so
|
|
|
|
// that the DOM item can copy the *old* value at its index:
|
|
|
|
mItems[index]->RemovingFromList();
|
|
|
|
}
|
2011-02-06 12:11:26 +03:00
|
|
|
|
|
|
|
InternalList()[index] = domItem->ToSVGLength();
|
2010-07-17 01:42:12 +04:00
|
|
|
mItems[index] = domItem;
|
|
|
|
|
2011-02-06 12:11:26 +03:00
|
|
|
// This MUST come after the ToSVGPoint() call, otherwise that call
|
|
|
|
// would end up reading bad data from InternalList()!
|
|
|
|
domItem->InsertingIntoList(this, AttrEnum(), index, IsAnimValList());
|
|
|
|
|
2012-09-06 00:49:53 +04:00
|
|
|
return domItem.forget();
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
|
|
|
|
2014-04-12 01:26:29 +04:00
|
|
|
already_AddRefed<DOMSVGLength> DOMSVGLengthList::RemoveItem(
|
2012-09-06 00:49:53 +04:00
|
|
|
uint32_t index, ErrorResult& error) {
|
2010-07-17 01:42:12 +04:00
|
|
|
if (IsAnimValList()) {
|
2012-09-06 00:49:53 +04:00
|
|
|
error.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return nullptr;
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
|
|
|
|
2012-09-05 18:52:57 +04:00
|
|
|
if (index >= LengthNoFlush()) {
|
2012-09-06 00:49:53 +04:00
|
|
|
error.Throw(NS_ERROR_DOM_INDEX_SIZE_ERR);
|
|
|
|
return nullptr;
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
2011-02-16 10:54:26 +03:00
|
|
|
|
2013-12-25 02:09:22 +04:00
|
|
|
AutoChangeLengthListNotifier notifier(this);
|
2011-02-16 10:54:26 +03:00
|
|
|
// Now that we know we're removing, keep animVal list in sync as necessary.
|
|
|
|
// Do this *before* touching InternalList() so the removed item can get its
|
|
|
|
// internal value.
|
|
|
|
MaybeRemoveItemFromAnimValListAt(index);
|
|
|
|
|
2013-07-12 14:25:26 +04:00
|
|
|
// We have to return the removed item, so get it, creating it if necessary:
|
2020-08-08 01:50:28 +03:00
|
|
|
RefPtr<DOMSVGLength> result = GetItemAt(index);
|
2010-07-17 01:42:12 +04:00
|
|
|
|
|
|
|
// Notify the DOM item of removal *before* modifying the lists so that the
|
|
|
|
// DOM item can copy its *old* value:
|
|
|
|
mItems[index]->RemovingFromList();
|
|
|
|
|
|
|
|
InternalList().RemoveItem(index);
|
|
|
|
mItems.RemoveElementAt(index);
|
2011-02-06 12:11:26 +03:00
|
|
|
|
2011-02-16 10:54:04 +03:00
|
|
|
UpdateListIndicesFromIndex(mItems, index);
|
2011-02-06 12:11:26 +03:00
|
|
|
|
2012-09-06 00:49:53 +04:00
|
|
|
return result.forget();
|
|
|
|
}
|
|
|
|
|
2013-07-12 14:25:26 +04:00
|
|
|
already_AddRefed<DOMSVGLength> DOMSVGLengthList::GetItemAt(uint32_t aIndex) {
|
|
|
|
MOZ_ASSERT(aIndex < mItems.Length());
|
|
|
|
|
2010-07-17 01:42:12 +04:00
|
|
|
if (!mItems[aIndex]) {
|
|
|
|
mItems[aIndex] =
|
|
|
|
new DOMSVGLength(this, AttrEnum(), aIndex, IsAnimValList());
|
|
|
|
}
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGLength> result = mItems[aIndex];
|
2013-07-12 14:25:26 +04:00
|
|
|
return result.forget();
|
2010-07-17 01:42:12 +04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
void DOMSVGLengthList::MaybeInsertNullInAnimValListAt(uint32_t aIndex) {
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(!IsAnimValList(), "call from baseVal to animVal");
|
2011-02-16 10:54:26 +03:00
|
|
|
|
2015-11-04 08:42:41 +03:00
|
|
|
if (!AnimListMirrorsBaseList()) {
|
2011-02-16 10:54:26 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-04 08:42:41 +03:00
|
|
|
DOMSVGLengthList* animVal = mAList->mAnimVal;
|
|
|
|
|
|
|
|
MOZ_ASSERT(animVal, "AnimListMirrorsBaseList() promised a non-null animVal");
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(animVal->mItems.Length() == mItems.Length(),
|
|
|
|
"animVal list not in sync!");
|
2015-05-28 21:07:43 +03:00
|
|
|
MOZ_ALWAYS_TRUE(animVal->mItems.InsertElementAt(aIndex, nullptr, fallible));
|
2011-02-16 10:54:26 +03:00
|
|
|
|
|
|
|
UpdateListIndicesFromIndex(animVal->mItems, aIndex + 1);
|
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
void DOMSVGLengthList::MaybeRemoveItemFromAnimValListAt(uint32_t aIndex) {
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(!IsAnimValList(), "call from baseVal to animVal");
|
2011-02-16 10:54:26 +03:00
|
|
|
|
2015-11-04 08:42:41 +03:00
|
|
|
if (!AnimListMirrorsBaseList()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-29 19:47:53 +04:00
|
|
|
// This needs to be a strong reference; otherwise, the RemovingFromList call
|
|
|
|
// below might drop the last reference to animVal before we're done with it.
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGLengthList> animVal = mAList->mAnimVal;
|
2011-02-16 10:54:26 +03:00
|
|
|
|
2015-11-04 08:42:41 +03:00
|
|
|
MOZ_ASSERT(animVal, "AnimListMirrorsBaseList() promised a non-null animVal");
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(animVal->mItems.Length() == mItems.Length(),
|
|
|
|
"animVal list not in sync!");
|
2011-02-16 10:54:26 +03:00
|
|
|
|
|
|
|
if (animVal->mItems[aIndex]) {
|
|
|
|
animVal->mItems[aIndex]->RemovingFromList();
|
|
|
|
}
|
|
|
|
animVal->mItems.RemoveElementAt(aIndex);
|
|
|
|
|
|
|
|
UpdateListIndicesFromIndex(animVal->mItems, aIndex);
|
|
|
|
}
|
|
|
|
|
2018-12-28 16:42:46 +03:00
|
|
|
} // namespace dom
|
2010-07-17 01:42:12 +04:00
|
|
|
} // namespace mozilla
|