This file is indexed.

/usr/share/games/flightgear/Phi/examples/horizon.html is in flightgear-phi 2016.4.2+dfsg1-1.

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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>FlightGear - Phi Example</title>


<style type="text/css" media="screen">

html, body, #wrapper {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	padding: 0;
	margin: 0;
	border: 0;
	overflow: hidden;
}

body {
	background-color: #337cf8;
}

#ground {
	padding: 0;
	margin: 0;
	background-color: brown;
	position: absolute;
	top: 50%;
	bottom: -200%;
	left: -10%;
	right: -10%;
	background: brown;
}

#airspeed {
	position: absolute;
	left: 25%;
	width: 4em;
	top: 10%;
	bottom: 10%;
}

#altitude {
	position: absolute;
	right: 25%;
	width: 4em;
	top: 10%;
	bottom: 10%;
}

#marker {
	position: absolute;
	left: 30%;
	right: 30%;
	top: 50%;
	height: 4px;
	transform: translateY(-2px);
}
</style>
</head>

<body>

    <!-- always use a wrapper div to get a handle for the knockout bindings -->
    <div id="wrapper">

   <!--  add a brown box for the ground
   check http://knockoutjs.com/documentation/style-binding.html for the data-bind syntax 
   -->
        <div id="ground" data-bind="style: { transform: groundTransform }">
          <div style="width: 100%; padding: 0; margin: 0; border: 1px solid white;"></div>
       </div>

       <div id="marker">
         <div style="width: 30%; float: left; height: 100%; border: 4px solid yellow; border-style: outset; border-radius: 2px; background-color: yellow; box-sizing: border-box;"></div>
         <div style="width: 30%; float: right; height: 100%; border: 4px solid yellow; border-style: outset; border-radius: 2px; background-color: yellow; box-sizing: border-box;"></div>
       </div>

       <div id="airspeed">
         <!-- put the airspeed indicator here -->
       </div>
       <div id="altitude">
         <!-- put the altitude indicator here -->
       </div>
    </div>

</body>

<!--  
  this is the only script tag required, require.js takes care of loading everyting needed
  first thing requirejs does is to load the script defined in the data-main attribute, "./horizon.js" in
  our case. Note: the ".js" extension gets added automatically.
 -->
<script type="text/javascript" async="async" data-main="./horizon" src="/3rdparty/require/require.js"></script>
</html>