/usr/share/xul-ext/firexpath/content/firebugOverlay.xul is in xul-ext-firexpath 0.9.7-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 | <?xml version="1.0"?>
<!DOCTYPE overlay SYSTEM "chrome://firepath/locale/FirePath.dtd">
<?xml-stylesheet href="chrome://firepath/skin/FirePath.css" type="text/css"?>
<overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script src="chrome://firepath/content/FirePathPanel.js" type="application/javascript"/>
<stringbundleset id="stringbundleset">
<stringbundle id="Firepath_strings" src="chrome://firepath/locale/FirePath.properties"/>
</stringbundleset>
<popup id="contentAreaContextMenu">
<menuitem id="menu_fpShow" label="&FirePath.context.show.label;"
insertafter="context-viewpartialsource-selection"
oncommand="Firebug.toggleBar(true); Firebug.chrome.selectPanel('firepath').updateSelection(document.popupNode)"
accesskey="&FirePath.context.show.key;"/>
</popup>
<hbox id="fbToolbarInner">
<toolbarbutton id="FirePathBarHighlightButton" collapsed="true" label="&FirePath.highlight.button;" class="toolbar-text-button"
oncommand="Firebug.FirePathPanel.ResultHighlightModule.toggleHighlight();"
checked="false" disabled="true" insertafter="fbLocationList"/>
<firepathbar id="FirePathBar" flex="1" collapsed="true" insertafter="fbLocationList"/>
</hbox>
<vbox id="fbContentBox">
<firepathstatusbar id="FirePathStatusBar" insertafter="fbCommandBox" collapsed="true"/>
</vbox>
</overlay>
|