|
1 <?xml version="1.0"?> |
|
2 <?xml-stylesheet href="chrome://global/skin" type="text/css"?> |
|
3 <!-- |
|
4 XUL Widget Test for preferences window |
|
5 --> |
|
6 <prefwindow xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
|
7 title="preferences window" |
|
8 windowtype="test:preferences2" |
|
9 buttons="accept,cancel" |
|
10 onload="RunTest(window.arguments)" |
|
11 > |
|
12 <script type="application/javascript"> |
|
13 <![CDATA[ |
|
14 function RunTest(aArgs) |
|
15 { |
|
16 // open child |
|
17 document.documentElement.openSubDialog("window_preferences3.xul", "", {test: aArgs[0], accept: aArgs[1]}); |
|
18 // close dialog |
|
19 document.documentElement[aArgs[1] ? "acceptDialog" : "cancelDialog"](); |
|
20 } |
|
21 ]]> |
|
22 </script> |
|
23 |
|
24 <prefpane id="sample_pane" label="Sample Prefpane"/> |
|
25 </prefwindow> |