blob: 2b72ceb8d451e5006bd4bd75552e7f6ed2346084 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window id="yourwindow" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="text/javascript">
<![CDATA[
// put some js code here
]]>
</script>
<toolbox>
<toolbar>
<toolbarbutton type="menu" class="toolbarbutton-1 firefly_files" label="Crash" tooltiptext="Crash">
<menupopup onpopupshown="this.enableKeyboardNavigator(false);">
<menuitem>
<textbox type="autocomplete" oninput="doFilter(this.value,false)" onchange="doFilter(this.value,false)" />
</menuitem>
</menupopup>
</toolbarbutton>
</toolbar>
</toolbox>
</window>
|