no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / bugs / 261826-1.xhtml
blob649b2cb6ba55e54f4265f302f4dfc13c91fb345a
1 <?xml version="1.0" encoding="UTF-8"?>
2 <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
3 <window id="MyWindow"
4 title=""
5 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
6 width="800"
7 height="600"
8 onload="revealTab()">
10 <script type="application/x-javascript">
11 function revealTab(){
12 document.getElementById("fourthTab").setAttribute("hidden", "false");
14 </script>
16 <tabbox>
17 <tabs>
18 <tab label="first"/>
19 <tab label="second"/>
20 <tab label="third"/>
21 <tab id="fourthTab" label="fourth" hidden="true"/>
22 </tabs>
23 <tabpanels>
24 <tabpanel>
25 <label value="First page"/>
26 </tabpanel>
27 <tabpanel>
28 <label value="second page"/>
29 </tabpanel>
30 <tabpanel>
31 <label value="third page"/>
32 </tabpanel>
33 <tabpanel>
34 <label value="fourth page"/>
35 </tabpanel>
36 </tabpanels>
37 </tabbox>
38 </window>