This file is indexed.

/usr/share/doc/libjs-scriptaculous/test/functional/sortable_nested_test.html is in libjs-scriptaculous 1.9.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
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
<html>
<head>
  <title>Nested Sortable element bug</title>
  <script src="../../lib/prototype.js" type="text/javascript"></script>
  <script src="../../src/scriptaculous.js" type="text/javascript"></script>
</head>
<body>

<ul id ="route">

  <li id="39" class="segment">
  <h2 id="39_title"> <span id="39_note" class="segment_title">COLLEGE AVE</span></h2>
  <ul id="39_entries">
    <li id="39:3" class="entry">625</li>
    <li id="39:4" class="entry">617</li>
    <li id="39:5" class="entry">601</li>
  </ul>
  </li>

  <li id="40" class="segment">
  <h2 id="40_title">Right <span id="40_note" class="segment_title">COLLEGE CT</span></h2>
  <ul id="40_entries">
    <li id="40:7" class="entry">14</li>
    <li id="40:8" class="entry">27</li>
    <li id="40:9" class="entry">30</li>
  </ul>
  </li>
</ul>

<script type="text/javascript">
Sortable.create(
  "route",
  {
    handle:'segment_title',
    format: /([0-9]+)/
  }
);



Sortable.create("39_entries", {
    dropOnEmpty:true,
    constraint:false,
    format: /[0-9]+:([0-9]+)/
  }
);

Sortable.create("40_entries", {
    dropOnEmpty:true,
    constraint:false,
    format: /[0-9]+:([0-9]+)/
  }
);

</script>
</body>
</html>