From 5e3150f32fbdba6224ede335d8985774707870ca Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Fri, 10 Jan 2025 20:02:21 -0800 Subject: [PATCH] Avoid gt/lt in innerHTML. --- test.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.html b/test.html index 0cf6041..dbe1a14 100644 --- a/test.html +++ b/test.html @@ -26,7 +26,7 @@ SPDX-License-Identifier: GPL-3.0-or-later const end = performance.now() times.push(end - start) console.log(`${work} (${end - start} ms) ${hash}`) - document.getElementById('output').innerHTML += `${hash} <${work}> (${end - start} ms)
` + document.getElementById('output').innerHTML += `${hash} [${work}] (${end - start} ms)
` } print(times) }) -- 2.34.1