window.addEventListener("resize", () => { const pres = document.getElementsByTagName("pre") Array.from(pres).forEach((pre) => { const { clientWidth, scrollWidth } = pre pre.tabIndex = scrollWidth > clientWidth ? 0 : -1 }) })