From 2963fc9b7dea4789a16af9a3b68147f513ed434b Mon Sep 17 00:00:00 2001 From: Cesar Gonzalez Date: Tue, 25 Jun 2024 05:17:58 -0500 Subject: [PATCH] [PM-5189] Fixing issues found within code review behind how we position elements --- .../autofill/services/autofill-overlay-content.service.ts | 5 +++++ 1 file changed, 5 insertions(+) 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);