XUL ダイアログを作成しました。このダイアログを開くと、Firefox のナビゲーション バーが表示されます。Firefox ナビゲーション バーなしで XUL アプリケーションを開くことは可能ですか? スクリーンショットを添付します。Javascript の window.open コマンドを使用しています。すなわち
window.open("http://localhost/test.xul", "test", "chrome, width=130,height=60, menubar=no");
ここにXULコードがあります
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<dialog id="donothing" title="Dialog example"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
buttons="accept,cancel"
buttonlabelcancel="Cancel"
buttonlabelaccept="Save"
ondialogaccept="return doOK();"
ondialogcancel="return doCancel();">
<dialogheader title="Options" description="My preferences"/>
<groupbox>
<caption label="Colour"/>
<radiogroup>
<radio label="Red"/>
<radio label="Green" selected="true"/>
<radio label="Blue"/>
</radiogroup>
<label value="Nickname"/>
<textbox/>
</groupbox>
</dialog>