27 lines
398 B
HTML
27 lines
398 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<body>
|
||
|
|
||
|
<h2>Angular2 tree benchmark</h2>
|
||
|
<p>
|
||
|
<button id="ng2DestroyDom">destroyDom</button>
|
||
|
<button id="ng2CreateDom">createDom</button>
|
||
|
</p>
|
||
|
|
||
|
<h2>Baseline tree benchmark</h2>
|
||
|
<p>
|
||
|
<button id="baselineDestroyDom">destroyDom</button>
|
||
|
<button id="baselineCreateDom">createDom</button>
|
||
|
</p>
|
||
|
|
||
|
<div>
|
||
|
<app></app>
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
<baseline></baseline>
|
||
|
</div>
|
||
|
|
||
|
$SCRIPTS$
|
||
|
</body>
|
||
|
</html>
|