summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/chrome/test_bug396367-2.html
blob: 2a751cd8be3d305935daf4668bf834cbdeca7770 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=396367
-->
<head>
  <title>Test for Bug 396367</title>
  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"/>
  <style>select::after { content:"m"; }</style>
  <script>
    SimpleTest.waitForExplicitFinish();

    function finish() {
      ok(true, "didn't crash");
      top.docShell.browsingContext.textZoom = 1;
      SimpleTest.finish();
    }
  </script>
</head>
<body>

<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=396367">Mozilla Bug 396367</a>
<p id="display"></p>
<div id="content" style="display: none">

</div>
<pre id="test">

<div style="overflow: scroll; float: left;">

<select></select>

<li style="display: table-cell;">

<script>
top.docShell.browsingContext.textZoom = Math.floor(10 * Math.random()) / 4 + 0.2;
document.documentElement.offsetHeight;
setTimeout(finish, 0);
</script>
</li>
</div>


</pre>
</body>
</html>