mirror of https://github.com/gorhill/uBlock.git
do not overwrite prior results
This commit is contained in:
parent
dbb7e80e3c
commit
b94b3417d1
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
<link rel="stylesheet" href="css/common.css">
|
<link rel="stylesheet" href="css/common.css">
|
||||||
<link rel="stylesheet" href="css/dashboard-common.css">
|
<link rel="stylesheet" href="css/dashboard-common.css">
|
||||||
|
<link rel="stylesheet" href="css/benchmarks.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -14,7 +15,9 @@
|
||||||
<div class="body">
|
<div class="body">
|
||||||
<p>The purpose of this pane is strictly for development purpose. Please, do <strong>not</strong> open issues about it.</p>
|
<p>The purpose of this pane is strictly for development purpose. Please, do <strong>not</strong> open issues about it.</p>
|
||||||
<div id="staticNetFilteringEngine">
|
<div id="staticNetFilteringEngine">
|
||||||
<p>Static Network Filtering Engine: <button type="button">Measure</button> <span class="results">?</span></p>
|
<p>Static Network Filtering Engine <button type="button">Measure</button></p>
|
||||||
|
</div>
|
||||||
|
<div id="results">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
/**
|
||||||
|
uBlock Origin - a browser extension to block requests.
|
||||||
|
Copyright (C) 2018-present Raymond Hill
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see {http://www.gnu.org/licenses/}.
|
||||||
|
|
||||||
|
Home: https://github.com/gorhill/uBlock
|
||||||
|
*/
|
||||||
|
|
||||||
|
#results {
|
||||||
|
font-family: mono;
|
||||||
|
font-size: 90%;
|
||||||
|
white-space: pre;
|
||||||
|
}
|
|
@ -181,6 +181,15 @@ const contexts = [
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
||||||
|
const stdout = function(s) {
|
||||||
|
const parent = document.getElementById('results');
|
||||||
|
const line = document.createElement('div');
|
||||||
|
line.textContent = s;
|
||||||
|
parent.insertBefore(line, parent.firstElementChild);
|
||||||
|
};
|
||||||
|
|
||||||
|
/******************************************************************************/
|
||||||
|
|
||||||
document.querySelector('#staticNetFilteringEngine button').addEventListener(
|
document.querySelector('#staticNetFilteringEngine button').addEventListener(
|
||||||
'click',
|
'click',
|
||||||
( ) => {
|
( ) => {
|
||||||
|
@ -191,11 +200,9 @@ document.querySelector('#staticNetFilteringEngine button').addEventListener(
|
||||||
contexts,
|
contexts,
|
||||||
},
|
},
|
||||||
response => {
|
response => {
|
||||||
document.querySelector('#staticNetFilteringEngine .results')
|
stdout(`Static Network Filtering Engine: ${response.duration.toFixed(2)} ms for ${contexts.length} requests, ${(response.duration / contexts.length).toFixed(3)} ms/request`);
|
||||||
.textContent =
|
|
||||||
`${response.duration.toFixed(2)} ms for ${contexts.length} requests, ${(response.duration / contexts.length).toFixed(3)} ms/request`;
|
|
||||||
}
|
}
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue