This file is indexed.

/usr/share/xul-ext/autofill-forms/chrome/content/autofillFormsTagEditor.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
42
43
44
45
46
47
48
49
50
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://autofillForms/skin/autofillFormsTagEditor.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="autofillFormsTagEditor"
	title="&tageditor.title;"
	buttons="accept,cancel,help"
	ondialogaccept="autofillForms.tagEditorSave();"
	ondialogcancel="return true;"
	ondialoghelp="autofillForms.openHelp('Dynamic Tags');"
	persist="screenX screenY width height sizemode"
	width="525"
	height="400">
	<vbox flex="1">
		<richlistbox id="tagList" flex="1" onkeypress="autofillForms.tagEditorHandleKeyPress(event)"/>
		<separator class="thin"/>
		<hbox>
			<button id="buttonAddTag" label="&add.label;" accesskey="&add.accesskey;" oncommand="autofillForms.tagEditorAdd(null, null);"/>
			<button id="buttonRemoveTag" label="&remove.label;" accesskey="&remove.accesskey;" oncommand="autofillForms.tagEditorRemove(null);"/>
			<button id="buttonValidateTagCode" label="&validate.label;" accesskey="&validate.accesskey;" oncommand="autofillForms.tagEditorValidate(null);"/>
			<textbox id="validationResultTextBox" flex="1"/>
		</hbox>
		<separator class="thin"/>
		<separator class="groove"/>
		<separator class="thin"/>
		<groupbox>
			<caption label="&tagimportexport.label;"/>
			<hbox>
				<button label="&tagimportbutton.label;" oncommand="autofillForms.importDynamicTagsFromTagEditor();"/>
				<button label="&tagexportbutton.label;" oncommand="autofillForms.exportDynamicTagsFromTagEditor();"/>
				<spacer flex="1"/>
			</hbox>
		</groupbox>
	</vbox>
	<separator class="thin"/>
	<script
		type="application/x-javascript"
		src="chrome://autofillForms/content/autofillForms.js"
	/>
	<script
		type="application/x-javascript"
		src="chrome://autofillForms/content/autofillFormsTagEditor.js"
	/>
	<stringbundleset id="stringbundleset">
		<stringbundle
			id="autofillFormsStringBundle"
			src="chrome://autofillForms/locale/autofillForms.properties"
		/>
	</stringbundleset>
</dialog>