summaryrefslogtreecommitdiffstats
path: root/comm/mail/base/test/browser/files/menulist.xhtml
blob: cba2bbcf86e8b29d69d2f1951110033720257d62 (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
30
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin/global.css"?>
<?xml-stylesheet type="text/css" href="chrome://messenger/skin/menulist.css"?>

<window align="start" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml">
  <button id="before" label="I'm just a button" onclick="alert('I\'m a button!')"/>

  <menulist>
    <menupopup>
      <menuitem value="foo" label="foo"/>
      <menuitem value="bar" label="bar"/>
    </menupopup>
  </menulist>

  <menulist is="menulist-editable">
    <menupopup>
      <menuitem value="foo" label="foo"/>
      <menuitem value="bar" label="bar"/>
    </menupopup>
  </menulist>

  <menulist is="menulist-editable" editable="true" width="100">
    <menupopup>
      <menuitem value="foo" label="foo"/>
      <menuitem value="bar" label="bar"/>
    </menupopup>
  </menulist>

  <button id="after" label="I'm just a button"/>
</window>