forked from mozilla/devtools-perf-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (59 loc) · 2.19 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html>
<title>PowerSurge – A Firefox Developer Edition Performance Tools Celebration</title>
<head>
<style>
@import url(//fonts.googleapis.com/css?family=Squada+One);
body { background: #282245 }
#comicbubble {
position: absolute; z-index: 255; right: 16px; bottom: 16px;
background: url(images/comicbubble1.png);
width: 314px;
height: 143px;
display: block;
color: #cbdbfc;
padding: 10px 10px;
font-family: "Squada One";
font-size: 24px;
text-decoration: none
}
</style>
<script src="script/data.js"></script>
<script src="script/Utils.js"></script>
<script src="script/Playground.js"></script>
<script src="script/Playground.Scanlines.js"></script>
<script src="script/Playground.SoundOnDemand.js"></script>
<script src="script/Engine.js"></script>
<script src="script/Benchmark.js"></script>
<script src="script/BackgroundStars.js"></script>
<script src="script/CircleExplosion.js"></script>
<script src="script/Ship.js"></script>
<script src="script/Bullet.js"></script>
<script src="script/Asteroid.js"></script>
<script src="script/Cursor.js"></script>
<script src="script/Resource.js"></script>
<script src="script/Button.js"></script>
<script src="script/Particle.js"></script>
<script src="script/Planet.js"></script>
<script src="script/Game.js"></script>
<script src="script/Powerup.js"></script>
<script src="script/TextOut.js"></script>
<script src="script/Trail.js"></script>
<script src="script/Missile.js"></script>
<script src="script/Gameover.js"></script>
<script src="script/Main.js"></script>
<script src="script/bottlenecks.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new
Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-49796218-26', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<a id="comicbubble" href="https://www.mozilla.org/en-US/firefox/developer/" target="_blank"></a>
</body>
</html>