fuzzer web ui: fail scrolling into view gracefully

This commit is contained in:
Andrew Kelley 2024-08-05 17:31:22 -07:00
parent 895fa87d77
commit 1484f174ea

View File

@ -214,7 +214,7 @@
// Empirically, Firefox needs this requestAnimationFrame in order for the scrollIntoView to work.
requestAnimationFrame(function() {
const slDom = document.getElementById("l" + sourceLocationIndex);
slDom.scrollIntoView({
if (slDom != null) slDom.scrollIntoView({
behavior: "smooth",
block: "center",
});