summaryrefslogtreecommitdiffstats
path: root/toolkit/content/tests/chrome/window_preferences2.xul
blob: 87158c9c7c24cd84485b3885b25d989b053f1585 (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
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<!--
  XUL Widget Test for preferences window
-->
<prefwindow xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
            title="preferences window"
            windowtype="test:preferences2"
            buttons="accept,cancel"
            onload="RunTest(window.arguments)"
>
  <script type="application/javascript">
  <![CDATA[
    function RunTest(aArgs)
    {
      // open child
      document.documentElement.openSubDialog("window_preferences3.xul", "", {test: aArgs[0], accept: aArgs[1]});
      // close dialog
      document.documentElement[aArgs[1] ? "acceptDialog" : "cancelDialog"]();
    }
  ]]>
  </script>

  <prefpane id="sample_pane" label="Sample Prefpane"/>
</prefwindow>