This add `TreeKind::FlatForSelection` which should ignore the UA shadow trees which are created in `<details>`, `<video>`, SVG `<use>`, etc because their children are not selectable or slotted and reordered by the shadow tree so that `Selection` and `AbstractRange` need to work with their children in the non-flattened tree. This patch does not change the behavior. It'll be done by a following patch. Differential Revision: https://phabricator.services.mozilla.com/D281304
103 lines
3.6 KiB
C++
103 lines
3.6 KiB
C++
/* 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/. */
|
|
|
|
#ifndef mozilla_dom_CrossShadowBoundaryRange_h
|
|
#define mozilla_dom_CrossShadowBoundaryRange_h
|
|
|
|
#include "mozilla/RangeBoundary.h"
|
|
#include "mozilla/RangeUtils.h"
|
|
#include "mozilla/dom/AbstractRange.h"
|
|
#include "mozilla/dom/StaticRange.h"
|
|
#include "nsTArray.h"
|
|
|
|
namespace mozilla {
|
|
class ErrorResult;
|
|
|
|
namespace dom {
|
|
|
|
/**
|
|
* CrossShadowBoundaryRange inherits StaticRange but the boundaries may cross
|
|
* the shadow DOM boundaries. This won't exposed to the web.
|
|
*/
|
|
class CrossShadowBoundaryRange final : public StaticRange,
|
|
public nsStubMutationObserver {
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_IMETHODIMP_(void) DeleteCycleCollectable(void) override;
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(
|
|
CrossShadowBoundaryRange, StaticRange)
|
|
|
|
CrossShadowBoundaryRange() = delete;
|
|
explicit CrossShadowBoundaryRange(const StaticRange& aOther) = delete;
|
|
|
|
template <typename SPT, typename SRT, typename EPT, typename ERT>
|
|
static already_AddRefed<CrossShadowBoundaryRange> Create(
|
|
const RangeBoundaryBase<SPT, SRT>& aStartBoundary,
|
|
const RangeBoundaryBase<EPT, ERT>& aEndBoundary, nsRange* aOwner);
|
|
|
|
void NotifyNodeBecomesShadowHost(nsINode* aNode) {
|
|
if (aNode == mStart.GetContainer()) {
|
|
mStart.NotifyParentBecomesShadowHost();
|
|
}
|
|
|
|
if (aNode == mEnd.GetContainer()) {
|
|
mEnd.NotifyParentBecomesShadowHost();
|
|
}
|
|
}
|
|
|
|
nsINode* GetCommonAncestor() const { return mCommonAncestor; }
|
|
|
|
// Recomputes mCommonAncestor from the current mStart/mEnd and moves the
|
|
// mutation-observer registration to it if it changed. Called from
|
|
// StaticRange::DoSetRange after the boundaries are updated, so it runs for
|
|
// every boundary change rather than only on initial creation.
|
|
void UpdateCommonAncestor();
|
|
|
|
// CrossShadowBoundaryRange should have a very limited usage.
|
|
nsresult SetStartAndEnd(nsINode* aStartContainer, uint32_t aStartOffset,
|
|
nsINode* aEndContainer, uint32_t aEndOffset) = delete;
|
|
|
|
template <typename SPT, typename SRT, typename EPT, typename ERT>
|
|
nsresult SetStartAndEnd(const RangeBoundaryBase<SPT, SRT>& aStartBoundary,
|
|
const RangeBoundaryBase<EPT, ERT>& aEndBoundary) {
|
|
return StaticRange::SetStartAndEnd(aStartBoundary, aEndBoundary);
|
|
}
|
|
|
|
NS_DECL_NSIMUTATIONOBSERVER_CHARACTERDATACHANGED
|
|
NS_DECL_NSIMUTATIONOBSERVER_CONTENTREMOVED
|
|
NS_DECL_NSIMUTATIONOBSERVER_PARENTCHAINCHANGED
|
|
|
|
private:
|
|
explicit CrossShadowBoundaryRange(nsINode* aNode, nsRange* aOwner)
|
|
: StaticRange(aNode, StaticRange::MutationObserved::Yes,
|
|
TreeKind::FlatForSelection),
|
|
mOwner(aOwner) {}
|
|
virtual ~CrossShadowBoundaryRange() = default;
|
|
|
|
void ResetToReuse();
|
|
|
|
// This is either NULL if this CrossShadowBoundaryRange has been
|
|
// reset by Release() or the closest common shadow-including ancestor
|
|
// of mStart and mEnd.
|
|
nsCOMPtr<nsINode> mCommonAncestor;
|
|
|
|
static nsTArray<RefPtr<CrossShadowBoundaryRange>>* sCachedRanges;
|
|
|
|
friend class AbstractRange;
|
|
|
|
// nsRange owns CrossShadowBoundaryRange; it always outlives
|
|
// CrossShadowBoundaryRange, so it's safe to use raw pointer here.
|
|
nsRange* mOwner;
|
|
};
|
|
|
|
inline CrossShadowBoundaryRange* StaticRange::AsCrossShadowBoundaryRange() {
|
|
MOZ_ASSERT(IsCrossShadowBoundaryRange());
|
|
return static_cast<CrossShadowBoundaryRange*>(this);
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // #ifndef mozilla_dom_CrossShadowBoundaryRange_h
|