30 lines
471 B
HTML
30 lines
471 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<link rel="import" href="binary_tree.html">
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<h2>Params</h2>
|
||
|
<form>
|
||
|
Depth:
|
||
|
<input type="number" name="depth" placeholder="depth" value="9">
|
||
|
<br>
|
||
|
<button>Apply</button>
|
||
|
</form>
|
||
|
|
||
|
<h2>Polymer tree benchmark</h2>
|
||
|
<p>
|
||
|
<button id="destroyDom">destroyDom</button>
|
||
|
<button id="createDom">createDom</button>
|
||
|
</p>
|
||
|
|
||
|
<div>
|
||
|
<binary-tree id="app"></binary-tree>
|
||
|
</div>
|
||
|
|
||
|
<script src="../../bootstrap.js"></script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|