This file is indexed.

/usr/share/doc/php-xml-htmlsax3/examples/example.html is in php-xml-htmlsax3 3.0.0+really3.0.0-2.

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
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>This is HTML 4.0</title>
</head>
<body>
<h1 id="title">This page is HTML 4.0</h1>
<p>It contains a number of classic "failings" in terms of well formed XML,
such as<br>
- Tags which aren't closed<br>
- Attributes which have no value<br>
<p>A standard XML parser will complain about but using HTMLSax it can be
converted to XHTML 1.0.
<form>
Do you like XHTML?
<input
    type="checkbox"
    name="likeIt"
    checked>
</form>

<img src=/images/layout/go-button.gif onclick=javascript:document.searchform.submit() height=21 width=21>

</body>
</html>