Merge pull request #20047 from Aditi-1400/fix-horizontal-scroll

Make horizontal padding relative to device width
This commit is contained in:
calixteman 2025-07-03 16:52:15 +02:00 committed by GitHub
commit fd87e668e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 37 additions and 4 deletions

View File

@ -149,4 +149,32 @@ describe("find bar", () => {
); );
}); });
}); });
describe("scrolls to the search result text for smaller viewports", () => {
let pages;
beforeEach(async () => {
pages = await loadAndWait("tracemonkey.pdf", ".textLayer", 100);
});
afterEach(async () => {
await closePages(pages);
});
it("must scroll to the search result text", async () => {
await Promise.all(
pages.map(async ([browserName, page]) => {
// Set a smaller viewport to simulate a mobile device
await page.setViewport({ width: 350, height: 600 });
await page.click("#viewFindButton");
await page.waitForSelector("#findInput", { visible: true });
await page.type("#findInput", "productivity");
const highlight = await page.waitForSelector(".textLayer .highlight");
expect(await highlight.isIntersectingViewport()).toBeTrue();
})
);
});
});
}); });

View File

@ -29,7 +29,6 @@ const FindState = {
const FIND_TIMEOUT = 250; // ms const FIND_TIMEOUT = 250; // ms
const MATCH_SCROLL_OFFSET_TOP = -50; // px const MATCH_SCROLL_OFFSET_TOP = -50; // px
const MATCH_SCROLL_OFFSET_LEFT = -400; // px
const CHARACTERS_TO_NORMALIZE = { const CHARACTERS_TO_NORMALIZE = {
"\u2010": "-", // Hyphen "\u2010": "-", // Hyphen
@ -573,10 +572,9 @@ class PDFFindController {
return; return;
} }
this._scrollMatches = false; // Ensure that scrolling only happens once. this._scrollMatches = false; // Ensure that scrolling only happens once.
const spot = { const spot = {
top: MATCH_SCROLL_OFFSET_TOP, top: MATCH_SCROLL_OFFSET_TOP,
left: selectedLeft + MATCH_SCROLL_OFFSET_LEFT, left: selectedLeft,
}; };
scrollIntoView(element, spot, /* scrollMatches = */ true); scrollIntoView(element, spot, /* scrollMatches = */ true);
} }

View File

@ -120,7 +120,14 @@ function scrollIntoView(element, spot, scrollMatches = false) {
offsetY += spot.top; offsetY += spot.top;
} }
if (spot.left !== undefined) { if (spot.left !== undefined) {
offsetX += spot.left; const elementWidth = element.getBoundingClientRect().width;
const padding = MathClamp(
(parent.clientWidth - elementWidth) / 2,
20,
400
);
const left = spot.left - padding;
offsetX += left;
parent.scrollLeft = offsetX; parent.scrollLeft = offsetX;
} }
} }