| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 <!-- | |
| 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | |
| 7 Code distributed by Google as part of the polymer project is also | |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | |
| 9 --> | |
| 10 <head> | |
| 11 <title>Observation Benchmarks</title> | |
| 12 <meta charset="utf-8"> | |
| 13 <style> | |
| 14 * { | |
| 15 font-family: arial, helvetica, sans-serif; | |
| 16 font-weight: 400; | |
| 17 } | |
| 18 body { | |
| 19 margin: 0; | |
| 20 padding: 0; | |
| 21 background-color: rgba(0, 0, 0, .1); | |
| 22 } | |
| 23 #canvasWrapper { | |
| 24 width: 800px; | |
| 25 height: 400px; | |
| 26 } | |
| 27 </style> | |
| 28 </head> | |
| 29 <body> | |
| 30 <h1>Observation Benchmarks</h1> | |
| 31 | |
| 32 <select id="benchmarkSelect"> | |
| 33 <option>ObjectBenchmark</option> | |
| 34 <option>SetupObjectBenchmark</option> | |
| 35 <option>ObservableListBenchmark</option> | |
| 36 <option>SetupObservableListBenchmark</option> | |
| 37 <option>PathBenchmark</option> | |
| 38 <option>SetupPathBenchmark</option> | |
| 39 </select> | |
| 40 <select id="configSelect"> | |
| 41 </select> | |
| 42 | |
| 43 <button id="go">Run Benchmarks</button> | |
| 44 | |
| 45 <span>Object Count: </span> | |
| 46 <input id="objectCountInput" style="width: 200px" value="4000, 8000, 16000, 3200
0"> | |
| 47 <span id="mutationCountWrapper"> | |
| 48 <span>Mutation Count: </span> | |
| 49 <input id="mutationCountInput" style="width: 200px" | |
| 50 value="0, 100, 200, 400, 800, 1600"><br> | |
| 51 </span> | |
| 52 <br> | |
| 53 <span id="status"></span> | |
| 54 | |
| 55 <section style="width: 100%"> | |
| 56 <article> | |
| 57 <div style="display:inline-block; padding-bottom: 20px"> | |
| 58 Times in ms | |
| 59 </div> | |
| 60 <div id="canvasWrapper" style="display:inline-block"> | |
| 61 </div> | |
| 62 <div style="display:inline-block"> | |
| 63 <ul id="legendList"> | |
| 64 </ul> | |
| 65 </div> | |
| 66 </article> | |
| 67 </section> | |
| 68 <h3 style="margin-left: 440px">Object Set Size</h3> | |
| 69 <script type="application/dart" src="index.dart"></script> | |
| 70 <script src="packages/browser/dart.js"> | |
| 71 </script> | |
| 72 </body> | |
| 73 </html> | |
| OLD | NEW |