27 lines
498 B
HTML
27 lines
498 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="destroyDom">destroyDom</button>
|
||
|
<button id="createDom">createDom</button>
|
||
|
<button id="updateDomProfile">profile updateDom</button>
|
||
|
<button id="createDomProfile">profile createDom</button>
|
||
|
</p>
|
||
|
|
||
|
<div>
|
||
|
<app></app>
|
||
|
</div>
|
||
|
|
||
|
<script src="../../bootstrap.js"></script>
|
||
|
</body>
|
||
|
</html>
|