Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,8 @@ <h1>ClickBench — a Benchmark For Analytical DBMS</h1>
System &amp; Machine
</th>
<th colspan="2">
Relative <span id="time-or-size">time</span> (lower is better)
Relative <span id="time-or-size">time</span> (lower is better).<br>
<span style="font-weight: normal" id="scale_hint"></span>
</th>
</tr>
</thead>
Expand Down Expand Up @@ -1044,6 +1045,10 @@ <h2>Detailed Comparison</h2>
}

findPassiveSelectors(filtered_data);

/// The small hint below column heading "Relative time (lower is better)"
color = (document.documentElement.getAttribute('data-theme') == 'dark') ? 'blue' : 'brown';
document.getElementById("scale_hint").textContent = 'Different shades of ' + color + ' represent the same value at different scales (1x, 10x, 100x zoom).';
}

function isSubsequence(str, subseq) {
Expand Down