summaryrefslogtreecommitdiff
path: root/dom/base/nsDocument.h
diff options
context:
space:
mode:
authorFranklinDM <mrmineshafter17@gmail.com>2023-03-03 21:48:01 +0800
committerFranklinDM <mrmineshafter17@gmail.com>2023-03-04 21:32:11 +0800
commit6ffdfa793ee9d16de0c1218dbe9188e8a7279f14 (patch)
tree981815ab10c70de5dd0aea279313d2ee9fbab89d /dom/base/nsDocument.h
parentfb9484caa34c14a91f3eca8c6465767c2ab00315 (diff)
downloaduxp-6ffdfa793ee9d16de0c1218dbe9188e8a7279f14.tar.gz
Issue #2135 - Bug 1430301: Implement ShadowRoot.elementFromPoint/elementsFromPoint
Diffstat (limited to 'dom/base/nsDocument.h')
-rw-r--r--dom/base/nsDocument.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/dom/base/nsDocument.h b/dom/base/nsDocument.h
index 1c10d7b5c3..923fb49ae9 100644
--- a/dom/base/nsDocument.h
+++ b/dom/base/nsDocument.h
@@ -692,14 +692,6 @@ public:
nsIAtom* aAttrName,
const nsAString& aAttrValue) const override;
- virtual Element* ElementFromPointHelper(float aX, float aY,
- bool aIgnoreRootScrollFrame,
- bool aFlushLayout) override;
-
- virtual void ElementsFromPointHelper(float aX, float aY,
- uint32_t aFlags,
- nsTArray<RefPtr<mozilla::dom::Element>>& aElements) override;
-
virtual nsresult NodesFromRectHelper(float aX, float aY,
float aTopSize, float aRightSize,
float aBottomSize, float aLeftSize,
@@ -1312,16 +1304,6 @@ private:
nsresult InitCSP(nsIChannel* aChannel);
- /**
- * Find the (non-anonymous) content in this document for aFrame. It will
- * be aFrame's content node if that content is in this document and not
- * anonymous. Otherwise, when aFrame is in a subdocument, we use the frame
- * element containing the subdocument containing aFrame, and/or find the
- * nearest non-anonymous ancestor in this document.
- * Returns null if there is no such element.
- */
- nsIContent* GetContentInThisDocument(nsIFrame* aFrame) const;
-
// Just like EnableStyleSheetsForSet, but doesn't check whether
// aSheetSet is null and allows the caller to control whether to set
// aSheetSet as the preferred set in the CSSLoader.