UNPKG

node-webodf

Version:

WebODF - JavaScript Document Engine http://webodf.org/

37 lines 1.13 kB
<!DOCTYPE html> <html> <head> <title>WebODF performance and benchmarking tool</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <link href="runner.css" rel="stylesheet"/> <script src="webodf.js" type="text/javascript"></script> </head> <body> <div id="loadingScreen"> <h1>Loading required files. This may take a while.</h1> </div> <div id="benchmarkView"> <h1>Benchmark [<span id="version" class="value">unknown</span>]</h1> <table id="benchmarkResults"> <thead> <tr> <td class="action">Action</td> <td class="status">Status</td> <td class="elapsed">Time taken<br/> (ms)</td> <td class="speed">km/h</td> <td class="pages">pages/h</td> </tr> </thead> <tbody></tbody> </table> </div> <div id="documentView"> <div id="canvas"></div> </div> <script src="benchmark.js" type="text/javascript"></script> <script> var benchmark = new module$HTMLBenchmark(); benchmark.start(); </script> </body> </html>