2017-04-13 15:00:59 -07: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-04-13 15:00:59 -07:00
|
|
|
<body>
|
|
|
|
|
|
|
|
<h2>Params</h2>
|
|
|
|
<form>
|
|
|
|
Depth:
|
|
|
|
<input type="number" name="depth" placeholder="depth" value="9">
|
|
|
|
<br>
|
|
|
|
<button>Apply</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<h2>Ng1 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" data="initData">Loading...</tree>
|
|
|
|
</div>
|
|
|
|
</body>
|
2019-02-06 18:02:07 +01:00
|
|
|
</html>
|