summaryrefslogtreecommitdiffstats
path: root/browser/components/preferences/in-content/tests/browser_bug1184989_prevent_scrolling_when_preferences_flipped.xul
blob: 59b644c8fa24ea3fdc4c26c87cba0556f1291be7 (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
31
32
33
<?xml version="1.0"?>
<!--
  XUL Widget Test for Bug 1184989
  -->
<page title="Bug 1184989 Test"
      xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

<vbox id="container" style="height: 200px; overflow: auto;">
  <vbox style="height: 500px;">
    <hbox>
      <button id="button" label="button" />
    </hbox>

    <hbox>
      <checkbox id="checkbox" label="checkbox" />
    </hbox>

    <hbox style="height: 50px;">
      <listbox id="listbox">
        <listitem id="listitem" label="listitem" />
        <listitem label="listitem" />
      </listbox>
    </hbox>

    <hbox>
      <radiogroup id="radiogroup">
        <radio id="radio" label="radio" />
      </radiogroup>
    </hbox>
  </vbox>
</vbox>

</page>