2017-12-11 18:15:57 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
2019-02-06 18:02:07 +01:00
|
|
|
<head>
|
|
|
|
<!-- Prevent the browser from requesting any favicon. -->
|
|
|
|
<link rel="icon" href="data:,">
|
|
|
|
</head>
|
2017-12-11 18:15:57 +01:00
|
|
|
<body>
|
|
|
|
|
|
|
|
<h2>Params</h2>
|
|
|
|
<form>
|
|
|
|
Depth:
|
2019-11-06 16:56:28 +01:00
|
|
|
<input type="number" name="depth" placeholder="depth" value="10">
|
2017-12-11 18:15:57 +01:00
|
|
|
<br>
|
|
|
|
<button>Apply</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<h2>Render3 Tree Benchmark</h2>
|
|
|
|
<p>
|
|
|
|
<button id="destroyDom">destroyDom</button>
|
|
|
|
<button id="createDom">createDom</button>
|
|
|
|
<button id="detectChanges">detectChanges</button>
|
|
|
|
<button id="updateDomProfile">profile updateDom</button>
|
|
|
|
<button id="createDomProfile">profile createDom</button>
|
|
|
|
<button id="detectChangesProfile">profile detectChanges</button>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
Change detection runs:<span id="numberOfChecks"></span>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<tree id="root"></tree>
|
|
|
|
</div>
|
|
|
|
|
2019-11-22 13:12:05 -08:00
|
|
|
<!--default load location for ts_devserver-->
|
|
|
|
<script src="/_/ts_scripts.js"></script>
|
2017-12-11 18:15:57 +01:00
|
|
|
</body>
|
|
|
|
</html>
|