This file is indexed.

/usr/share/javascript/debugger/DebugTop.html is in libjs-debugger 0.5-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
		<script>
			function toggleLog(el) {
			if (parent.oDbg.debug) {
			parent.oDbg.stop();
			el.innerHTML = 'Start';
			} else {
			parent.oDbg.start();
			el.innerHTML = 'Stop';
			}
			el.blur();
			}
			function levelChanged(el) {
			if (el.selectedIndex == 0)
			return;
			parent.oDbg.setLevel(el.options[el.selectedIndex].value);
			}
			
		</script>
		<style type="text/css">
			body {
			font-size: 0.8em;
			font-family: sans-serif;
			text-align: right;
			margin: 2;
			background-color: #cfd498;
			}
			select {
			font-size: 0.8em;
			font-family: sans-serif;
			}
			button {
			font-size: 0.8em;
			font-family: sans-serif;
			border: 1px solid black;
			}
		</style>
  </head>

  <body>
		Set Level: <select onchange="levelChanged(this);" id="lvlSelector">
			<script>
				for (var i=0; i <= parent.opener.DEBUGGER_MAX_LEVEL; i++)
					document.write("<option value='"+i+"'>"+i+"</option>");
			</script>
		</select>&nbsp;
		<button onclick="toggleLog(this);" id="toggleLogButton">Stop</button>&nbsp;
		<button onclick="top.DebugBottom.document.body.innerHTML='';">Clear</button>
  </body>
</html>