-
Notifications
You must be signed in to change notification settings - Fork 6
/
diff.html
42 lines (41 loc) · 1.35 KB
/
diff.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
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this file,
- You can obtain one at http://mozilla.org/MPL/2.0/. -->
<!DOCTYPE html>
<html lang="en-us">
<head>
<link rel="shortcut icon" href="/clouseau.ico">
<link rel="stylesheet" href="/clouseau.css?v=4">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Annotate/Diff for {{ changeset }} — {{ filename }}</title>
</head>
<style>
html, body, div, iframe {
height: 100%;
}
</style>
<body>
<header>
<nav>
<ul class="nav">
<li>
<a href="https://www.mozilla.org/" class="brand">mozilla</a>
</li>
<li style="float:right;">
<a href="https://github.com/mozilla/crash-clouseau"><span class="github"></span></a>
</li>
</ul>
</nav>
</header>
<div style="display: table; width: 100%">
<div style="display: table-row;">
<div style="display: table-cell; width: 50%;">
<iframe src="{{ annotate_url }}" width="100%" scrolling="yes"></iframe>
</div>
<div style="display: table-cell; width: 50%;">
<iframe src="{{ diff_url }}" width="100%" scrolling="yes"></iframe>
</div>
</div>
</div>
</body>
</html>