This file is indexed.

/usr/share/doc/libjs-scriptaculous/test/functional/sortable5_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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>script.aculo.us sortable functional test file</title>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <script src="../../lib/prototype.js" type="text/javascript"></script>
  <script src="../../src/scriptaculous.js" type="text/javascript"></script>
  <script src="../../src/unittest.js" type="text/javascript"></script>
  <link rel="stylesheet" href="../test.css" type="text/css" />
</head>
<body>
  
  <div id="container_div">
    
  </div>
  
<script type="text/javascript" language="javascript" charset="utf-8">
// <![CDATA[
  var new_ul_id = 'new_id_123';
  var ul = document.createElement("ul");
  var ul_id = document.createAttribute("id");
  ul_id.nodeValue = new_ul_id;
  ul.setAttributeNode(ul_id);
  
  var li = document.createElement("li");
  li.setAttribute("id", "test_1");
  li.appendChild(document.createTextNode("blah1"));
  ul.appendChild(li);
  
  var li2 = document.createElement("li");
  li2.setAttribute("id", "test_2");
  li2.appendChild(document.createTextNode("blah2"));
  ul.appendChild(li2);
  
  $('container_div').appendChild(ul);
  
  Sortable.create(new_ul_id, { onUpdate: function() { alert(Sortable.serialize('new_id_123')); } });
// ]]>
</script>

</body>
</html>