layout/reftests/bugs/498228-1-ref.xul

branch
TOR_BUG_9701
changeset 3
141e0f1194b1
equal deleted inserted replaced
-1:000000000000 0:60d04db1ff55
1 <?xml version="1.0"?>
2
3 <window id="list-testcase" title="Testcase"
4 xmlns:html="http://www.w3.org/1999/xhtml"
5 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
6 class="reftest-wait">
7
8 <script>
9 function dotest() {
10 var list = document.getElementById('list');
11 list.ensureIndexIsVisible(4);
12 setTimeout("document.documentElement.className = ''", 0);
13 }
14
15 window.addEventListener("load", dotest, false);
16
17 </script>
18
19 <listbox id="list" rows="3" seltype="single">
20 <listitem label="Item 1"/>
21 <listitem label="Item 2"/>
22 <listitem label="Item 3"/>
23 <listitem label="Item 4"/>
24 <listitem label="Item 5" selected="true"/>
25 </listbox>
26
27 </window>

mercurial