summaryrefslogtreecommitdiffstats
path: root/layout/forms/test/test_bug402198.html
blob: f319a11976c6c0b26ed7c69634b815a2cf921a9c (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=402198
-->
<head>
  <title>Test for Bug 402198</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=402198">Mozilla Bug 402198</a>
<p id="display">
  <select></select>
  <select><optgroup></optgroup></select>
  <legend style="overflow: scroll;">
    <select></select>
  </legend>
  <span></span>
  <span style="display: -moz-box;">
    <select></select>
  </span>
  <legend style=" ">
    <label style="overflow: scroll; display: -moz-box;">
      <select></select>
    </label>
  </legend>
  <legend>
    <label style=" display: table;">
      <select id="a">
        <option>High Grade</option>
        <option>Medium Grade</option>
      </select>
    </label>
  </legend>

  <input>
  <select multiple="multiple"></select>
  <select style="overflow: scroll; display: -moz-box;">
    <optgroup></optgroup>
    <optgroup style="display: table-cell;"></optgroup>
  </select>
</p>

<pre id="test">
<script class="testbody" type="text/javascript">
function doe3() {
  document.documentElement.style.display = 'none';
  document.body.offsetHeight;
  document.documentElement.style.display = '';
  document.body.offsetHeight;

  document.getElementById('a').focus();
  document.body.style.display = 'none';

  synthesizeKey('KEY_Tab', {shiftKey: true});

  is(0, 0, "this is a crash/assertion test, so we're ok if we survived this far");
  setTimeout(function() {document.body.style.display = ''; SimpleTest.finish();}, 0);
}

function do_test() {
  setTimeout(doe3,300);
}

SimpleTest.waitForExplicitFinish();
SimpleTest.requestFlakyTimeout("untriaged");
addLoadEvent(do_test);
</script>
</pre>

<style>
* {quotes: "quote" "quote" !important;}
</style>

</body>
</html>