mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="EditorDialog.css" type="text/css"?>
|
|
<!DOCTYPE window SYSTEM "imagequalitydlog.dtd">
|
|
<window xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:html="http://www.w3.org/TR/REC-html40">
|
|
|
|
<table xmlns="http://www.w3.org/TR/REC-html40" cellspacing="20">
|
|
<tr>
|
|
<td>
|
|
<p>Choose the quality for this image:</p>
|
|
<p/>
|
|
<xul:box>
|
|
<p>
|
|
<xul:radio name="imageQualityType" value="High" />
|
|
High Quality (bigger image file size, longest time to view)
|
|
</p>
|
|
<br/>
|
|
<p>
|
|
<xul:radio checked="true" name="imageQualityType" value="Medium" />
|
|
Medium Quality
|
|
</p>
|
|
<br/>
|
|
<p>
|
|
<xul:radio name="imageQualityType" value="Low" />
|
|
Low Quality (smaller image file size, shortest time to view)
|
|
</p>
|
|
</xul:box>
|
|
|
|
<p/>
|
|
<input type="button" id="helpbutton" value=" Help " disabled />
|
|
<input type="button" id="cancelbutton" value=" Cancel " />
|
|
<input type="button" id="okbutton" value=" OK " disabled />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</window>
|