1999-06-23 00:19:38 +04:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
|
|
|
|
<?xml-stylesheet href="chrome://editordlgs/skin/EditorDialog.css" type="text/css"?>
|
|
|
|
<!DOCTYPE window>
|
1999-07-03 02:52:34 +04:00
|
|
|
<xul:window class="dialog" title="Target Properties"
|
1999-06-23 00:19:38 +04:00
|
|
|
xmlns:xul ="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
xmlns="http://www.w3.org/TR/REC-html40"
|
1999-07-03 02:52:34 +04:00
|
|
|
onload = "Startup()"
|
1999-07-08 07:21:01 +04:00
|
|
|
align="vertical">
|
1999-06-23 00:19:38 +04:00
|
|
|
|
|
|
|
<!-- Methods common to all editor dialogs -->
|
|
|
|
<script language="JavaScript" src="chrome://editordlgs/content/EdDialogCommon.js">
|
|
|
|
</script>
|
|
|
|
<script language="JavaScript" src="chrome://editordlgs/content/EdNamedAnchorProps.js">
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<xul:broadcaster id="args" value=""/>
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td>
|
1999-07-03 02:52:34 +04:00
|
|
|
<div class="spacedtext">
|
|
|
|
Enter a name for this target:
|
|
|
|
</div>
|
1999-06-23 00:19:38 +04:00
|
|
|
<input type="text" id="name" size="30"/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
1999-07-06 04:19:40 +04:00
|
|
|
</table>
|
1999-07-08 07:21:01 +04:00
|
|
|
<!-- A classic case of box layout fighting what I want to do!
|
1999-07-14 19:24:33 +04:00
|
|
|
<xul:box>
|
1999-07-08 07:21:01 +04:00
|
|
|
<div class="spacedtext">
|
|
|
|
Enter a name for this target:
|
|
|
|
</div>
|
|
|
|
<input type="text" id="name" size="30"/>
|
|
|
|
</xul:box>
|
|
|
|
-->
|
1999-07-06 04:19:40 +04:00
|
|
|
<hr width="100%"/>
|
1999-07-08 07:21:01 +04:00
|
|
|
<xul:box>
|
|
|
|
<xul:titledbutton class="spaced" id="Advanced" onclick="onAdvanced()" value="More Attributes..."/>
|
|
|
|
<xul:spring flex="100%"/>
|
|
|
|
<xul:titledbutton class="spaced" id="OK" onclick="onOK()" value="OK"/>
|
|
|
|
<xul:titledbutton class="spaced" id="Cancel" onclick="onCancel()" value="Cancel"/>
|
|
|
|
</xul:box>
|
|
|
|
|
1999-06-23 00:19:38 +04:00
|
|
|
</xul:window>
|