File-drop
diff --git a/benchmarking/public/results.html b/benchmarking/public/results.html index ce2950f..26c2832 100644 --- a/benchmarking/public/results.html +++ b/benchmarking/public/results.html @@ -18,6 +18,7 @@ } td:first-child { white-space: nowrap; + padding: 4px 8px; } .characteristics { display: flex; @@ -25,12 +26,13 @@ .characteristics > span { flex: 1; display: block; + padding: 4px 8px; text-align: center; border-left: 1px solid black; border-right: 1px solid black; } .characteristics > span[active] { - background-color: greenyellow; + background-color: #87d241; } /* Charts */ #chartRoot { @@ -46,7 +48,7 @@Results
- Back to benchmark + Back to benchmarkSelect Case
@@ -59,7 +61,7 @@Dimensions
Device | +Device: |
DesktopMobile
@@ -67,7 +69,7 @@
|
Browser | +Browser: |
Firefox
@@ -78,7 +80,7 @@
|
Dataset | +Dataset: |
Simplify.js exampleBavaria outline
@@ -86,13 +88,13 @@
|
High Quality | +High Quality: |
On Off
|
Charts | +Charts: |
Simplify.js vs. Simplify.wasm
diff --git a/benchmarking/src/results.js b/benchmarking/src/results.js
index 70aa284..e05103f 100644
--- a/benchmarking/src/results.js
+++ b/benchmarking/src/results.js
@@ -22,7 +22,7 @@ const dimensionMap = {
set1: [[0], [0, 1, 2], [0], [0, 1], [0]],
set2: [[0], [2], [0], [0, 1], [1]],
set3: [[0], [0, 3], [1], [0, 1], [0]],
- set4: [[0], [0], [1], [0, 1], [2]]
+ set4: [[0], [0], [1], [0, 1], [0, 2]]
}
function setDimensions(set) {
let map = dimensionMap[set]
|