This file is indexed.

/usr/share/xul-ext/form-history-control/chrome/content/FhcCriteriaDialog.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
<?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="criteriaDialogv2"
        title="&fhcriteriadlg.windowtitle;"
        buttons="cancel,accept"
        style="width:48em; height:16em"
        ondialogaccept="return FhcCriteriaDialog.onFhcOK();"
        onload="FhcCriteriaDialog.initFhcCriteriaDialog();"
        persist="width height screenX screenY">

  <script type="application/x-javascript" src="chrome://formhistory/content/FhcCriteriaDialog.js"/>
  <script type="application/x-javascript" src="chrome://formhistory/content/utils/FhcUtil.js" />
  <script type="application/x-javascript" src="chrome://formhistory/content/utils/FhcDbHandler.js" />
  <script type="application/x-javascript" src="chrome://formhistory/content/utils/FhcBundle.js" />
  <script type="application/x-javascript" src="chrome://formhistory/content/utils/FhcPredefinedRegexp.js" />

  <stringbundleset id="stringbundleset">
    <stringbundle id="formhistory.stringbundle"
                  src="chrome://formhistory/locale/formhistory.properties"/>
  </stringbundleset>

  <menupopup id="regexp-namelist-menu">
    <menuitem id="regexp-title-item" class="menuitem-iconic fh_menuitem_regexp_title"
              tooltiptext="&fhwin.menuitem.regexpsearch.tooltip;"
              label="&fhwin.menuitem.regexpsearch.title;:" disabled="true"/>
    <menuseparator id="s1"/>
  </menupopup>

  <menupopup id="regexp-list-menu">
    <menuitem id="regexp-title-item" class="menuitem-iconic fh_menuitem_regexp_title"
              tooltiptext="&fhwin.menuitem.regexpsearch.tooltip;"
              label="&fhwin.menuitem.regexpsearch.title;:" disabled="true"/>
    <menuseparator id="s2"/>
  </menupopup>

  <vbox class="box-padded">
    <tooltip id="name-tip" orient="vertical" class="tooltip-regexstatus">
      <label value="RegExp Status:" class="tooltip-regexstatus-label"/>
      <label id="name-errmsg" class="tooltip-regexmessage-label"/>
    </tooltip>
    <tooltip id="value-tip" orient="vertical" class="tooltip-regexstatus">
      <label value="RegExp Status:" class="tooltip-regexstatus-label"/>
      <label id="value-errmsg" class="tooltip-regexmessage-label"/>
    </tooltip>

    <grid>
      <columns>
        <column/>
        <column flex="1"/>
        <column/>
        <column/>
        <column flex="3"/>
      </columns>
      <rows>
				<description id="descriptionAdd" style="display:none" class="description">
                     &fhcriteriadlg.add.description;</description>
				<description id="descriptionEdit" style="display:none" class="description">
                     &fhcriteriadlg.edit.description;</description>
        <hbox>
          <label id="errorMessageBlank" hidden="true" class="errormessage"
                 value="&fhcriteriadlg.namevaluefieldsemptyerror.label;"/>
          <label id="errorMessageExist" hidden="true" class="errormessage"
                 value="&fhcriteriadlg.existerror.label;"/>
          <label value=""/>
        </hbox>
        <row align="center">
          <label    control="description"
                    value="&fhcriteriadlg.description.label;"/>
          <textbox  id="description" tabindex="1"/>
        </row>
        <row align="center">
          <label    control="name"
                    value="&fhcriteriadlg.fieldname.label;"/>
          <textbox  id="name" tooltip="name-tip" tabindex="2"
                    oninput="FhcCriteriaDialog.onFhcInput(this);"/>
          <label    id="name-state" value="" tooltip="name-tip" class="invalidregexp"/>
          <vbox>
            <spacer flex="1"/>
            <image src="chrome://formhistory/skin/regexp.png"
                   class="image_icon"
                   tooltiptext="&fhwin.menuitem.regexpsearch.tooltip;"
                   onclick="FhcCriteriaDialog.showRegExpMenu('name')"/>
            <spacer flex="1"/>
          </vbox>
          <hbox>
            <checkbox id="nameExact" checked="true" disabled="true" tabindex="3" flex="1"
                      label="&fhcriteriadlg.matchexact.label;"/>
            <checkbox id="nameCase" checked="true" disabled="true" tabindex="4" flex="1"
                      label="&fhcriteriadlg.matchcase.label;"/>
            <checkbox id="nameRegex" checked="true" disabled="true" tabindex="5" flex="1"
                      label="RegExp" oncommand="FhcCriteriaDialog.toggleRegexpCheckbox(this)"/>
          </hbox>
        </row>
        <row align="center">
          <label    control="value"
                    value="&fhcriteriadlg.value.label;" />
          <textbox  id="value" tooltip="value-tip" tabindex="6"
                    oninput="FhcCriteriaDialog.onFhcInput(this);"/>
          <label    id="value-state" value="" tooltip="value-tip" class="invalidregexp"/>
          <vbox>
            <spacer flex="1"/>
            <image src="chrome://formhistory/skin/regexp.png"
                   class="image_icon"
                   tooltiptext="&fhwin.menuitem.regexpsearch.tooltip;"
                   onclick="FhcCriteriaDialog.showRegExpMenu('value')"/>
            <spacer flex="1"/>
          </vbox>
          <hbox>
            <checkbox id="valueExact" checked="true" disabled="true" tabindex="7" flex="1"
                      label="&fhcriteriadlg.matchexact.label;"/>
            <checkbox id="valueCase" checked="true" disabled="true" tabindex="8" flex="1"
                      label="&fhcriteriadlg.matchcase.label;"/>
            <checkbox id="valueRegex" checked="true" disabled="true" tabindex="9" flex="1"
                      label="RegExp" oncommand="FhcCriteriaDialog.toggleRegexpCheckbox(this)"/>
          </hbox>
        </row>
      </rows>
    </grid>
  </vbox>
</dialog>