diff --git a/apps/browser/src/autofill/services/autofill-overlay-content.service.ts b/apps/browser/src/autofill/services/autofill-overlay-content.service.ts index 2d284563ce..d3914b14a2 100644 --- a/apps/browser/src/autofill/services/autofill-overlay-content.service.ts +++ b/apps/browser/src/autofill/services/autofill-overlay-content.service.ts @@ -873,6 +873,11 @@ export class AutofillOverlayContentService implements AutofillOverlayContentServ return this.calculateSubFrameOffsets(iframeElement, subFrameUrl); } + /** + * Returns a set of all possible URL variations for the sub frame URL. + * + * @param subFrameUrl - The URL of the sub frame. + */ private getSubFrameUrlVariations(subFrameUrl: string) { try { const url = new URL(subFrameUrl, globalThis.location.href);