31 lines
		
	
	
		
			719 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			719 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>Baseline 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>
 | |
|     <tree id="root">Loading...</tree>
 | |
|   </div>
 | |
| 
 | |
|   <script>
 | |
|     var mainUrl = window.location.search.split(/[?&]main=([^&]+)/)[1]
 | |
|       || '../../bootstrap_plain.js';
 | |
|     document.write('<script src="' + mainUrl + '">\u003c/script>');
 | |
|   </script>
 | |
| </body>
 | |
| </html> |