Skip to content

Commit

Permalink
removed CSS content column, not really an issue in coding
Browse files Browse the repository at this point in the history
  • Loading branch information
jongund committed Jun 18, 2024
1 parent ffeb863 commit 262b0f3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions scripts/coverage-report.js
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,6 @@ glob
highContrast: data.toLowerCase().indexOf('high contrast') > 0,
svgHTML: html.querySelectorAll('svg').length,
svgCSS: getNumberOfReferences(dataCSS, 'svg', true),
contentCSS: getNumberOfReferences(dataCSS, 'content'),
forcedColors: getNumberOfReferences(dataCSS, 'forced-colors'),
currentColor: getNumberOfReferences(dataCSS, 'currentColor', true),

Expand Down Expand Up @@ -1008,7 +1007,6 @@ let IndexOfExampleGraphics = indexOfExamples.reduce(function (set, example) {
count += example.svgJS;
count += example.forcedColors;
count += example.currentColor;
count += example.contentCSS;

if (count === 0) {
return `${set}`;
Expand All @@ -1021,7 +1019,6 @@ let IndexOfExampleGraphics = indexOfExamples.reduce(function (set, example) {
<td>${htmlYesOrNo(example.svgJS)}</td>
<td>${htmlYesOrNo(example.forcedColors)}</td>
<td>${htmlYesOrNo(example.currentColor)}</td>
<td>${htmlYesOrNo(example.contentCSS)}</td>
</tr>`;
}, '');

Expand Down
1 change: 0 additions & 1 deletion scripts/coverage-report.template
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,6 @@
<th>SVG in JS</th>
<th><code>forced-colors</code> media query</th>
<th><code>currentColor</code> value</th>
<th>CSS content</th>
</tr>
</thead>
<tbody id="example_graphics_techniques_tbody">
Expand Down

0 comments on commit 262b0f3

Please sign in to comment.