| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <!-- Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | |
| 3 for details. All rights reserved. Use of this source code is governed by a | |
| 4 BSD-style license that can be found in the LICENSE file. | |
| 5 --> | |
| 6 <html> | |
| 7 <head> | |
| 8 <meta charset="utf-8"> | |
| 9 <title>VM Stats</title> | |
| 10 <link rel="stylesheet" href="vmstats.css"> | |
| 11 <script type="text/javascript" src="https://www.google.com/jsapi"></script> | |
| 12 </head> | |
| 13 <body> | |
| 14 <h1>VM Stats</h1> | |
| 15 <div id="vmstats"> | |
| 16 <p id="dashboard"> | |
| 17 <h3>Allocated Memory</h3> | |
| 18 <canvas id="graph" width="480px" height="240px"></canvas> | |
| 19 <h3>Isolates</h3> | |
| 20 <table id="isolateList"></table> | |
| 21 </p> | |
| 22 </div> | |
| 23 <div id="statusSection"> | |
| 24 <p id="statusText"></p> | |
| 25 </div> | |
| 26 | |
| 27 <script type="application/dart" src="vmstats.dart"></script> | |
| 28 <script src="packages/browser/dart.js"></script> | |
| 29 </body> | |
| 30 </html> | |
| OLD | NEW |