aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/vendor/benchmarkjs-runner/example.html
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-09-13 16:28:45 +0200
committerMaximilian Hils <git@maximilianhils.com>2014-09-13 16:28:45 +0200
commitb59234e25db8418cd53795ce94dda943e54f8ac1 (patch)
tree0fae4d0f0fba8330327a834f0ff2b1ce733fc002 /web/src/vendor/benchmarkjs-runner/example.html
parent2842f25b82799315c36a81564619cb5467bff61f (diff)
downloadmitmproxy-b59234e25db8418cd53795ce94dda943e54f8ac1.tar.gz
mitmproxy-b59234e25db8418cd53795ce94dda943e54f8ac1.tar.bz2
mitmproxy-b59234e25db8418cd53795ce94dda943e54f8ac1.zip
use bowser-installer
Diffstat (limited to 'web/src/vendor/benchmarkjs-runner/example.html')
-rw-r--r--web/src/vendor/benchmarkjs-runner/example.html44
1 files changed, 0 insertions, 44 deletions
diff --git a/web/src/vendor/benchmarkjs-runner/example.html b/web/src/vendor/benchmarkjs-runner/example.html
deleted file mode 100644
index 72c87d3e..00000000
--- a/web/src/vendor/benchmarkjs-runner/example.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!DOCTYPE html>
-<meta charset='utf-8' />
-<title>Benchmarks</title>
-<script src='runner.js'></script>
-<script>
-suite("String matching", function() {
- bench("String#match", function() {
- !! "Hello world".match(/o/);
- });
-
- bench("String#indexOf", function() {
- "Hello world".indexOf('o') > -1;
- });
-
- bench("RegExp#test", function() {
- !! /o/.test("Hello world");
- });
-
- before(function() {
- // Things to execute before all benchmarks in the suite.
- // Does not count into a benchmark's elapsed time.
- });
-
- afterEach(function() {
- // Things to execute after each benchmark cycle.
- // Does not count into a benchmark's elapsed time.
- });
-});
-
-/*
-// Advanced examples
-// ----------------------------------------------------------------------------
-
-// You can specify Benchmark.js options in suite() and bench().
-suite("My suite", { maxTime: 10 }, function() {
-
- bench("My benchmark", function() {
- }, {
- onCycle: ...
- });
-
-});
-*/
-</script>