881eb67545
The css files used in the benchmark contained 2 files for IE that contained syntax errors. These files weren't actually used by the benchmark, but were still in the repository.
39 lines
1.8 KiB
JavaScript
39 lines
1.8 KiB
JavaScript
"use strict";
|
|
|
|
const benchmarks = [
|
|
{
|
|
id: "json",
|
|
title: "JSON",
|
|
tests: [
|
|
{ file: "example1.json", title: "Example 1" },
|
|
{ file: "example2.json", title: "Example 2" },
|
|
{ file: "example3.json", title: "Example 3" },
|
|
{ file: "example4.json", title: "Example 4" },
|
|
{ file: "example5.json", title: "Example 5" }
|
|
]
|
|
},
|
|
{
|
|
id: "css",
|
|
title: "CSS",
|
|
tests: [
|
|
{ file: "960.gs/min/960_24_col.css", title: "960.gs - 960_24_col.css (minified)" },
|
|
{ file: "960.gs/min/960.css", title: "960.gs - 960.css (minified)" },
|
|
{ file: "960.gs/min/reset.css", title: "960.gs - reset.css (minified)" },
|
|
{ file: "960.gs/min/text.css", title: "960.gs - text.css (minified)" },
|
|
{ file: "960.gs/src/960_24_col.css", title: "960.gs - 960_24_col.css (source)" },
|
|
{ file: "960.gs/src/960.css", title: "960.gs - 960.css (source)" },
|
|
{ file: "960.gs/src/reset.css", title: "960.gs - reset.css (source)" },
|
|
{ file: "960.gs/src/text.css", title: "960.gs - text.css (source)" },
|
|
{ file: "blueprint/min/print.css", title: "Blueprint - print.css (minified)" },
|
|
{ file: "blueprint/min/screen.css", title: "Blueprint - screen.css (minified)" },
|
|
{ file: "blueprint/src/forms.css", title: "Blueprint - forms.css (source)" },
|
|
{ file: "blueprint/src/grid.css", title: "Blueprint - grid.css (source)" },
|
|
{ file: "blueprint/src/print.css", title: "Blueprint - print.css (source)" },
|
|
{ file: "blueprint/src/reset.css", title: "Blueprint - reset.css (source)" },
|
|
{ file: "blueprint/src/typography.css", title: "Blueprint - typography.css (source)" }
|
|
]
|
|
}
|
|
];
|
|
|
|
module.exports = benchmarks;
|