summaryrefslogtreecommitdiffstats
path: root/toolkit/modules/LayoutUtils.sys.mjs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /toolkit/modules/LayoutUtils.sys.mjs
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/modules/LayoutUtils.sys.mjs')
-rw-r--r--toolkit/modules/LayoutUtils.sys.mjs59
1 files changed, 59 insertions, 0 deletions
diff --git a/toolkit/modules/LayoutUtils.sys.mjs b/toolkit/modules/LayoutUtils.sys.mjs
new file mode 100644
index 0000000000..f3f9d0582b
--- /dev/null
+++ b/toolkit/modules/LayoutUtils.sys.mjs
@@ -0,0 +1,59 @@
+/* -*- mode: js; indent-tabs-mode: nil; js-indent-level: 2 -*- */
+/* 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/. */
+
+export var LayoutUtils = {
+ /**
+ * For a given DOM element, returns its position in screen coordinates of CSS units
+ * (<https://developer.mozilla.org/en-US/docs/Web/CSS/CSSOM_View/Coordinate_systems#screen>).
+ */
+ getElementBoundingScreenRect(aElement) {
+ let rect = aElement.getBoundingClientRect();
+ let win = aElement.ownerGlobal;
+
+ const { x, y, width, height } = this._rectToClientRect(win, rect);
+ return win.windowUtils.toScreenRectInCSSUnits(x, y, width, height);
+ },
+
+ /**
+ * Similar to getElementBoundingScreenRect using window and rect,
+ * returns screen coordinates in screen units.
+ */
+ rectToScreenRect(win, rect) {
+ const { x, y, width, height } = this._rectToClientRect(win, rect);
+ return win.ownerGlobal.windowUtils.toScreenRect(x, y, width, height);
+ },
+
+ _rectToClientRect(win, rect) {
+ let x = rect.left;
+ let y = rect.top;
+
+ // We need to compensate for ancestor iframes in the same process
+ // that might shift things over.
+ let parentFrame = win.browsingContext?.embedderElement;
+ while (parentFrame) {
+ win = parentFrame.ownerGlobal;
+ let cstyle = win.getComputedStyle(parentFrame);
+
+ let framerect = parentFrame.getBoundingClientRect();
+ x +=
+ framerect.left +
+ parseFloat(cstyle.borderLeftWidth) +
+ parseFloat(cstyle.paddingLeft);
+ y +=
+ framerect.top +
+ parseFloat(cstyle.borderTopWidth) +
+ parseFloat(cstyle.paddingTop);
+
+ parentFrame = win.browsingContext?.embedderElement;
+ }
+
+ return {
+ x,
+ y,
+ width: rect.width,
+ height: rect.height,
+ };
+ },
+};