File: graph.html

package info (click to toggle)
0ad 0.28.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 182,352 kB
  • sloc: cpp: 201,989; javascript: 19,730; ansic: 15,057; python: 6,597; sh: 2,046; perl: 1,232; xml: 543; java: 533; makefile: 105
file content (27 lines) | stat: -rw-r--r-- 800 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8"/>
		<title>0 A.D. Simulation Profiling</title>
		<!-- include js -->
		<!-- include graph js -->
	</head>
	<body onload="showReplayData();">
		<div>
			<label>Graph:
				<select id="replayGraphSelection" size="1" onChange="showReplayData()">
					<option value="time" selected="selected">Performance</option>
					<option value="bytes">Memory</option>
					<option value="garbageCollection">Garbage Collections</option>
				</select>
			</label>
		</div>
		<div id="replayGraphContainer">
			<div id="replayGraphLegend" style="width:300px;float:left"></div>
			<div>
				<div id="replayGraph" style="width:1100px; height:600px; float:left"></div>
				<div id="replayGraphDescription" style="float:top"></div>
			</div>
		</div>
	</body>
</html>