This file is indexed.

/usr/share/xul-ext/form-history-control/chrome/content/FhcEntryDialog.xul is in xul-ext-form-history-control 1.4.0.6-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
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?xml version="1.0"?>

<!DOCTYPE dialog SYSTEM "chrome://formhistory/locale/formhistory.dtd">

<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://formhistory/skin/menu.css" type="text/css"?>
<?xml-stylesheet href="chrome://formhistory/skin/editDialog.css" type="text/css"?>

<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        id="entryDialogv3"
        title="&fhentrydlg.windowtitle;"
        buttons="cancel,accept"
        style="width:40em;"
        ondialogaccept="return FhcEntryDialog.onOkay();"
        onload="FhcEntryDialog.init();"
        persist="width height screenX screenY">

  <script type="application/x-javascript" src="chrome://formhistory/content/FhcEntryDialog.js"/>
  <script type="application/x-javascript" src="chrome://formhistory/content/utils/FhcShowDialog.js"/>
  <script type="application/x-javascript" src="chrome://formhistory/content/utils/FhcUtil.js" />

  <menupopup id="open-url-menu">
    <!-- Re-use labels also used in HistoryWindowControl -->
    <menuitem id="open-url" class="menuitem-iconic fh_menuitem_link"
              label="&fhwin.menuitem.urlmenu.openurl;"
              oncommand="FhcEntryDialog.openURLMenu(this, 'url')"/>
    <menuitem id="open-url-noparam" class="menuitem-iconic fh_menuitem_link"
              label="&fhwin.menuitem.urlmenu.openurlnoparam;"
              oncommand="FhcEntryDialog.openURLMenu(this, 'url')"/>
    <menuitem id="open-url-host" class="menuitem-iconic fh_menuitem_link"
              label="&fhwin.menuitem.urlmenu.openurlhost;"
              oncommand="FhcEntryDialog.openURLMenu(this, 'url')"/>
    <menuseparator id="url-sep"/>
    <menuitem id="copy-url" class="menuitem-iconic fh_menuitem_copy"
              label="&fhwin.menuitem.urlmenu.openurlcopy;"
              oncommand="FhcEntryDialog.openURLMenu(this, 'copy')"/>
  </menupopup>

  <vbox class="box-padded">
    <grid>
      <columns>
        <column/>
        <column flex="1"/>
      </columns>
      <rows>
        <description id="descriptionAdd" style="display:none" class="description">
             &fhentrydlg.add.description;</description>
        <description id="descriptionEdit" style="display:none" class="description">
             &fhentrydlg.edit.description;</description>
        <description id="descriptionMultiple" style="display:none" class="description">
             &fhentrydlg.editmultiple.description;</description>
        <hbox>
          <label id="errorMessageBlank" hidden="true" class="errormessage"
                 value="&fhentrydlg.blankfielderror.label;"/>
          <label id="errorMessageExist" hidden="true" class="errormessage"
                 value="&fhentrydlg.existerror.label;"/>
          <label id="errorMessageTimesUsed" hidden="true" class="errormessage"
                 value="&fhentrydlg.timesusederror.label;"/>
          <label value=""/>
        </hbox>
        <row align="baseline">
          <label value="&fhentrydlg.fieldname.label;" control="name"/>
          <textbox id="name" oninput="FhcEntryDialog.onInput();"/>
        </row>
        <row align="baseline">
          <label value="&fhentrydlg.value.label;" control="value"/>
          <textbox id="value" oninput="FhcEntryDialog.onInput();"/>
        </row>
        <row align="baseline">
          <label value="&fhentrydlg.timesused.label;" control="used"/>
          <textbox id="used" oninput="FhcEntryDialog.onInput();"/>
        </row>
        <row align="baseline">
          <label value="&fhentrydlg.firstused.label;" control="first"/>
          <hbox>
            <textbox id="first" disabled="true" flex="1"/>
            <vbox id="placefirstbutton">
              <spacer flex="1"/>
              <image src="chrome://formhistory/skin/browsehistory.png"
                     class="image_icon"
                     tooltiptext="&fhentrydlg.firstusedhistory.img.tooltip;"
                     onclick="FhcEntryDialog.showBrowsingHistory('first')"/>
              <spacer flex="1"/>
            </vbox>
          </hbox>
        </row>
        <row align="baseline">
          <label value="&fhentrydlg.lastused.label;" control="last"/>
          <hbox>
            <textbox id="last" disabled="true" flex="1"/>
            <vbox id="placelastbutton">
              <spacer flex="1"/>
              <image src="chrome://formhistory/skin/browsehistory.png"
                     class="image_icon"
                     tooltiptext="&fhentrydlg.lastusedhistory.img.tooltip;"
                     onclick="FhcEntryDialog.showBrowsingHistory('last')"/>
              <spacer flex="1"/>
            </vbox>
          </hbox>
        </row>
      </rows>
    </grid>
    <groupbox id="placegroup">
      <caption id="placegroupcaption" label="&fhentrydlg.place.group.caption;"/>
      <grid>
        <columns>
          <column/>
          <column flex="1"/>
        </columns>
        <rows>
          <row align="baseline">
            <label value="&fhentrydlg.pagetitle.label;" control="pagetitle"/>
            <hbox>
              <textbox id="pagetitle" disabled="true" class="placeinfo" flex="1"/>
              <hbox class="image_icon"/>
            </hbox>
          </row>
          <row align="baseline">
            <label value="&fhentrydlg.host.label;" control="host"/>
            <hbox>
              <textbox id="host" disabled="true" class="placeinfo" flex="1"/>
              <hbox class="image_icon"/>
            </hbox>
          </row>
          <row align="baseline">
            <label value="&fhentrydlg.url.label;" control="url"/>
            <hbox>
              <textbox id="url" disabled="true" class="placeinfo" flex="1"/>
              <vbox id="link_button">
                <spacer flex="1"/>
                <image id="link_icon" class="image_icon"
                       tooltiptext="&fhwin.menuitem.urlmenu.tooltip;"
                       src="chrome://formhistory/skin/link.png"
                       onclick="FhcEntryDialog.showURLmenu()"/>
                <spacer flex="1"/>
              </vbox>
            </hbox>
          </row>
        </rows>
      </grid>
    </groupbox>
  </vbox>
</dialog>