Commit 1484f174ea

Andrew Kelley <andrew@ziglang.org>
2024-08-06 02:31:22
fuzzer web ui: fail scrolling into view gracefully
1 parent 895fa87
Changed files (1)
lib
fuzzer
lib/fuzzer/main.js
@@ -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",
       });