1 |
<?xml version="1.0"?> |
2 |
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
3 |
<?xml-stylesheet href="style.css" type="text/css"?> |
4 |
<window id="main" title="JSCoverage example" width="400" height="300" |
5 |
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
6 |
xmlns:html="http://www.w3.org/1999/xhtml"> |
7 |
<script src="script.js"/> |
8 |
<label id="request" class="red" value="Please select your favorite number:"/> |
9 |
<radiogroup> |
10 |
<radio label="One" value="radio1" oncommand="go(this);"/> |
11 |
<radio label="Two" value="radio2" oncommand="go(this);"/> |
12 |
<radio label="Three" value="radio3" oncommand="go(this);"/> |
13 |
<radio label="Four" value="radio4" oncommand="go(this);"/> |
14 |
</radiogroup> |
15 |
<description id="result" class="red"/> |
16 |
</window> |