2016-09-01 10:31:31 -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>
|
2016-09-01 10:31:31 -07:00
|
|
|
<body>
|
|
|
|
|
|
|
|
<h2>Params</h2>
|
|
|
|
<form>
|
|
|
|
Depth:
|
2019-11-06 16:56:28 +01:00
|
|
|
<input type="number" name="depth" placeholder="depth" value="10">
|
2016-09-01 10:31:31 -07:00
|
|
|
<br>
|
|
|
|
<button>Apply</button>
|
|
|
|
</form>
|
|
|
|
|
2016-09-01 16:56:45 -07:00
|
|
|
<h2>Incremental-Dom Tree Benchmark</h2>
|
2016-09-01 10:31:31 -07:00
|
|
|
<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>
|
|
|
|
<tree id="root"></tree>
|
|
|
|
</div>
|
2019-11-22 13:12:05 -08:00
|
|
|
|
|
|
|
<script src="/npm/node_modules/incremental-dom/dist/incremental-dom.js"></script>
|
2019-11-25 13:46:16 -08:00
|
|
|
<!--load location for ts_devserver-->
|
|
|
|
<script src="/app_bundle.js"></script>
|
2016-09-01 10:31:31 -07:00
|
|
|
</body>
|
2019-02-06 18:02:07 +01:00
|
|
|
</html>
|