summaryrefslogtreecommitdiffstats
path: root/layout/reftests/xul/accesskey.xhtml
blob: 1bbd2810e9121d73ec48c44f64c6a5561811ab8e (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
34
35
36
37
38
39
40
41
42
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>

<!-- This test checks that access keys are rendered properly, both when set with the
     accesskey attribute in the markup and updated via script later.
  -->
<window class="reftest-wait" onload="changeKeys()"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script>
<![CDATA[

var keys = ['L', 'l', 'b', 'x', 'l'];

function changeKeys()
{
  var box = document.getElementById('d');
  for (var b = 0; b < 5; b++)
    box.childNodes[b * 2].accessKey = keys[b];

  document.documentElement.className='';
}

]]>
</script>

<hbox align="start">
  <label control="b1" accesskey="L">Label1</label><input xmlns="http://www.w3.org/1999/xhtml"  id="b1" size="2"/>
  <label control="b2" accesskey="l">Label2</label><input xmlns="http://www.w3.org/1999/xhtml"  id="b2" size="2"/>
  <label control="b3" accesskey="b">Label3</label><input xmlns="http://www.w3.org/1999/xhtml"  id="b3" size="2"/>
  <label control="b4" accesskey="x">Label4</label><input xmlns="http://www.w3.org/1999/xhtml"  id="b4" size="2"/>
  <label control="b5" accesskey="l" maxwidth="50">Quite a long label. Hopefully it will wrap</label><input xmlns="http://www.w3.org/1999/xhtml"  id="b5" size="2"/>
</hbox>

<hbox id="d" align="start">
  <label control="d1" accesskey="z">Label1</label><input xmlns="http://www.w3.org/1999/xhtml"  id="d1" size="2"/>
  <label control="d2">Label2</label><input xmlns="http://www.w3.org/1999/xhtml"  id="d2" size="2"/>
  <label control="d3" accesskey="t">Label3</label><input xmlns="http://www.w3.org/1999/xhtml"  id="d3" size="2"/>
  <label control="d4" accesskey="b">Label4</label><input xmlns="http://www.w3.org/1999/xhtml"  id="d4" size="2"/>
  <label control="d5" accesskey="l" maxwidth="50">Quite a long label. Hopefully it will wrap</label><input xmlns="http://www.w3.org/1999/xhtml"  id="d5" size="2"/>
</hbox>

</window>