-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiff.html
More file actions
37 lines (31 loc) · 824 Bytes
/
Copy pathdiff.html
File metadata and controls
37 lines (31 loc) · 824 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Webresource Diff</title>
<!-- Include Monaco editor's CSS -->
<link rel="stylesheet" href="https://unpkg.com/monaco-editor@0.37.1/min/vs/editor/editor.main.css" />
<style>
html,
body {
height: 100%;
background-color: black;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
body {
padding: 0;
margin: 0;
overflow: hidden;
}
#diffContainer {
height: 100vh;
}
</style>
</head>
<body>
<div id="diffContainer"></div>
<script src="https://unpkg.com/monaco-editor@0.37.1/min/vs/loader.js"></script>
<script src="/WebResources/web_diff.js"></script>
</body>
</html>