- adds console and cloud reporter (via Google BigQuery). - makes parameters of tests explicit and modifiable. - removes `detect` and `ignoreGc` mode from benchpress as these can result in unstable numbers.
39 lines
788 B
HTML
39 lines
788 B
HTML
<!doctype html>
|
|
<html>
|
|
<body>
|
|
|
|
<h2>Params</h2>
|
|
<form>
|
|
Depth:
|
|
<input type="number" name="depth" placeholder="depth" value="9">
|
|
<br>
|
|
<button>Apply</button>
|
|
</form>
|
|
|
|
<h2>Angular2 tree benchmark</h2>
|
|
<p>
|
|
<button id="ng2DestroyDom">destroyDom</button>
|
|
<button id="ng2CreateDom">createDom</button>
|
|
<button id="ng2UpdateDomProfile">profile updateDom</button>
|
|
<button id="ng2CreateDomProfile">profile createDom</button>
|
|
</p>
|
|
|
|
<h2>Baseline tree benchmark</h2>
|
|
<p>
|
|
<button id="baselineDestroyDom">destroyDom</button>
|
|
<button id="baselineCreateDom">createDom</button>
|
|
<button id="baselineUpdateDomProfile">profile updateDom</button>
|
|
<button id="baselineCreateDomProfile">profile createDom</button>
|
|
</p>
|
|
|
|
<div>
|
|
<app></app>
|
|
</div>
|
|
|
|
<div>
|
|
<baseline></baseline>
|
|
</div>
|
|
|
|
$SCRIPTS$
|
|
</body>
|
|
</html> |