-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimings.html
More file actions
38 lines (35 loc) · 1.38 KB
/
Copy pathtimings.html
File metadata and controls
38 lines (35 loc) · 1.38 KB
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
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en" class="H(100%) M(0) P(0)">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Timings and Performance</title>
<script>
/* Optional configuration for ACSS-Live. Here, the debug statements
* are enabled. Debugging is only possible with the non-minified build
* because the debug code is removed during minification.
*
* This must be done before ACSS-Live is loaded. */
acssLiveConfig = {
settings: {
// Load and reload the page this many times. When done
// reloading, display the average times and total counts
// of each of the timers, along with some stats.
reloadCount: 50
}
};
</script>
<script src="../acss-live.js"></script>
<script src="./timings.js"></script>
<script src="https://unpkg.com/mithril@2.2.2/mithril.js"></script>
</head>
<body class="D(f) Fxd(c) Mih(100%) M(0) P(0)">
<div class="M(0.5em) controls">
</div>
<iframe
class="W(100%) H(75vh) BdAll Bxz(bb) Fxs(1)"
src="demo.html"
></iframe>
</body>
</html>