Skip to content

Commit b1d0865

Browse files
authored
fix: test if frameElement is readable (#2987)
1 parent fe06ea2 commit b1d0865

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

.changeset/lemon-baboons-search.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@floating-ui/dom": patch
3+
"@floating-ui/utils": patch
4+
---
5+
6+
fix: test if `frameElement` is readable to avoid errors in Safari and MSEdge with cross-origin iframes

packages/dom/src/utils/getBoundingClientRect.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import {isElement} from '../platform/isElement';
88
import {getVisualOffsets, shouldAddVisualOffsets} from './getVisualOffsets';
99
import {unwrapElement} from './unwrapElement';
1010
import type {VirtualElement} from '../types';
11+
import { getFrameElement } from '@floating-ui/utils/dom';
1112

1213
export function getBoundingClientRect(
1314
element: Element | VirtualElement,
@@ -50,7 +51,7 @@ export function getBoundingClientRect(
5051
: offsetParent;
5152

5253
let currentWin = win;
53-
let currentIFrame = currentWin.frameElement;
54+
let currentIFrame = getFrameElement(currentWin);
5455
while (currentIFrame && offsetParent && offsetWin !== currentWin) {
5556
const iframeScale = getScale(currentIFrame);
5657
const iframeRect = currentIFrame.getBoundingClientRect();
@@ -72,7 +73,7 @@ export function getBoundingClientRect(
7273
y += top;
7374

7475
currentWin = getWindow(currentIFrame);
75-
currentIFrame = currentWin.frameElement;
76+
currentIFrame = getFrameElement(currentWin);
7677
}
7778
}
7879

packages/utils/src/dom.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -178,12 +178,13 @@ export function getOverflowAncestors(
178178
const win = getWindow(scrollableAncestor);
179179

180180
if (isBody) {
181+
const frameElement = getFrameElement(win);
181182
return list.concat(
182183
win,
183184
win.visualViewport || [],
184185
isOverflowElement(scrollableAncestor) ? scrollableAncestor : [],
185-
win.frameElement && traverseIframes
186-
? getOverflowAncestors(win.frameElement)
186+
frameElement && traverseIframes
187+
? getOverflowAncestors(frameElement)
187188
: [],
188189
);
189190
}
@@ -193,3 +194,7 @@ export function getOverflowAncestors(
193194
getOverflowAncestors(scrollableAncestor, [], traverseIframes),
194195
);
195196
}
197+
198+
export function getFrameElement(win: Window): Element | null {
199+
return Object.getPrototypeOf(win.parent) ? win.frameElement : null;
200+
}

0 commit comments

Comments
 (0)