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