This file is indexed.

/usr/share/xul-ext/adblock-plus-element-hiding-helper/chrome/content/common.js is in xul-ext-adblock-plus-element-hiding-helper 1.2.2-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
/*
 * This Source Code is subject to the terms of the Mozilla Public License
 * version 2.0 (the "License"). You can obtain a copy of the License at
 * http://mozilla.org/MPL/2.0/.
 */

const Cc = Components.classes;
const Ci = Components.interfaces;
const Cr = Components.results;
const Cu = Components.utils;

Cu.import("resource://gre/modules/Services.jsm");

function require(module)
{
	let result = {};
	result.wrappedJSObject = result;
	Services.obs.notifyObservers(result, "elemhidehelper-require", module);
	return result.exports;
}

function E(id) document.getElementById(id);