authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-08-05 17:31:22-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-08-07 00:48:32-07:00
log1484f174eacb079209c92482d5d9fb360c00c09a
tree89785481092e1102ef8e04c4ad6f982270646d65
parent895fa87d7717ae861dd925b814be31897abd65c1

fuzzer web ui: fail scrolling into view gracefully


1 files changed, 1 insertions(+), 1 deletions(-)

lib/fuzzer/main.js+1-1
...@@ -214,7 +214,7 @@...@@ -214,7 +214,7 @@
214 // Empirically, Firefox needs this requestAnimationFrame in order for the scrollIntoView to work.214 // Empirically, Firefox needs this requestAnimationFrame in order for the scrollIntoView to work.
215 requestAnimationFrame(function() {215 requestAnimationFrame(function() {
216 const slDom = document.getElementById("l" + sourceLocationIndex);216 const slDom = document.getElementById("l" + sourceLocationIndex);
217 slDom.scrollIntoView({217 if (slDom != null) slDom.scrollIntoView({
218 behavior: "smooth",218 behavior: "smooth",
219 block: "center",219 block: "center",
220 });220 });