We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b27539a commit 77a3ac5Copy full SHA for 77a3ac5
lib/a11y/utils.ts
@@ -183,8 +183,7 @@ export async function buildBackendIdMaps(
183
if (n.contentDocument && locate(n.contentDocument)) return true;
184
return false;
185
} else {
186
- if (n.backendNodeId === backendNodeId)
187
- return ((iframeNode = n), true);
+ if (n.backendNodeId === backendNodeId) return (iframeNode = n), true;
188
return (
189
(n.children?.some(locate) ?? false) ||
190
(n.contentDocument ? locate(n.contentDocument) : false)
0 commit comments