-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
23 lines (23 loc) · 836 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Performance Flicker Test Analyser</title>
<link rel="stylesheet" type="text/css"
href="index.css">
<script src="index.js"></script>
</head>
<body onload="window.init();">
<div>
<label>Upload log file for analysis: <input type="file" onchange="window.analyseFile(this.files[0]);"></label><br>
or paste url <input onchange="window.analyseURL(this.value);">
</div>
<div class="main">
<div id="panel"></div>
<canvas id="canvas"></canvas>
</div>
<footer>
<p>Note, you have to have a patch from <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1547319">bug 1547319</a> applied to analyze logs from try server</p>
<p>Sourcers are at <a href="https://github.com/asurkov/flicker-analyzer">github.com</a></p>
</footer>
</body>