Files
sdk/runtime/bin/vmstats/vmstats.html
T
tball@google.com 9e3a61f149 Added support for "bin-ified" resources, used to link the vmstats
web app files into the VM binary. create_resources.py takes a list
of resources and writes each as a byte array, then builds a resource
table. resources.h defines a simple lookup for these arrays, which
vmstats uses.
Review URL: https://codereview.chromium.org//12377099

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@19569 260f80e4-7a28-3924-810f-c04153c831b5
2013-03-06 17:48:53 +00:00

31 lines
919 B
HTML

<!DOCTYPE html>
<!-- Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
for details. All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
-->
<html>
<head>
<meta charset="utf-8">
<title>VM Stats</title>
<link rel="stylesheet" href="vmstats.css">
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
</head>
<body>
<h1>VM Stats</h1>
<div id="vmstats">
<p id="dashboard">
<h3>Allocated Memory</h3>
<canvas id="graph" width="480px" height="240px"></canvas>
<h3>Isolates</h3>
<ul id="isolateList"></ul>
</p>
</div>
<div id="statusSection">
<p id="statusText"></p>
</div>
<script type="application/dart" src="vmstats.dart"></script>
<script src="packages/browser/dart.js"></script>
</body>
</html>