This file is indexed.

/usr/share/doc/drupal7-mod-libraries/tests/example/example_4.js is in drupal7-mod-libraries 2.1-3.

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
/**
 * @file
 * Test JavaScript file for Libraries loading.
 *
 * Replace the text in the 'libraries-test-javascript' div. See README.txt for
 * more information.
 */

(function ($) {

Drupal.behaviors.librariesTest = {
  attach: function(context, settings) {
    $('.libraries-test-javascript').text('If this text shows up, example_4.js was loaded successfully.')
  }
};

})(jQuery);