From 39a9f32d08b76d64f2e606db051125206ac7c42f Mon Sep 17 00:00:00 2001 From: Jon Gunderson Date: Thu, 6 Jun 2024 19:43:52 -0500 Subject: [PATCH] change system color table --- content/practices/high-contrast/high-contrast-practice.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/practices/high-contrast/high-contrast-practice.js b/content/practices/high-contrast/high-contrast-practice.js index 7c2bc8936e..ef5b5e3226 100644 --- a/content/practices/high-contrast/high-contrast-practice.js +++ b/content/practices/high-contrast/high-contrast-practice.js @@ -808,9 +808,9 @@ window.addEventListener('load', () => { systemColorValues.forEach((v) => { if (v.value) { const tr = document.createElement('tr'); - const tdv = document.createElement('td'); - tdv.textContent = v.value; - tr.appendChild(tdv); + const thv = document.createElement('th'); + thv.textContent = v.value; + tr.appendChild(thv); const tds = document.createElement('td'); const div = document.createElement('div'); div.role = 'img';