This file is indexed.

/usr/share/xul-ext/autofill-forms/chrome/content/autofillFormsRuleEditor.xul is in xul-ext-autofill-forms 1.0.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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://autofillForms/skin/autofillFormsRuleEditor.css" type="text/css"?>
<!DOCTYPE overlay SYSTEM "chrome://autofillForms/locale/autofillForms.dtd">
<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
	id="autofillFormsRuleEditor"
	title="&ruleeditor.title;"
	buttons="accept,cancel,help"
	ondialogaccept="autofillForms.ruleEditorSave();"
	ondialogcancel="return true;"
	ondialoghelp="autofillForms.openHelp('Rule Editor');"
	persist="screenX screenY width height sizemode"
	width="370"
	height="370">
	<vbox flex="1">
		<label>&ruleeditorinfo.label;</label>
		<separator class="thin"/>
		<label control="ruleElementsList" >&ruleeditorcondition.label;</label>
		<separator class="thin"/>
		<richlistbox id="ruleElementsList" flex="1" onkeypress="autofillForms.ruleEditorHandleKeyPress(event)"/>
		<separator class="thin"/>
		<hbox>
			<button id="buttonAddRuleElement" label="&add.label;" accesskey="&add.accesskey;" oncommand="autofillForms.ruleEditorAdd(null, null);"/>
			<button id="buttonRemoveRuleElement" label="&remove.label;" accesskey="&remove.accesskey;" oncommand="autofillForms.ruleEditorRemove(null);"/>
		</hbox>
	</vbox>
	<separator class="thin"/>
	<script
		type="application/x-javascript"
		src="chrome://autofillForms/content/autofillForms.js"
	/>
	<script
		type="application/x-javascript"
		src="chrome://autofillForms/content/autofillFormsRuleEditor.js"
	/>
	<stringbundleset id="stringbundleset">
		<stringbundle
			id="autofillFormsStringBundle"
			src="chrome://autofillForms/locale/autofillForms.properties"
		/>
	</stringbundleset>
</dialog>