summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/general/test_497898.html
blob: c26c67af867362455e51438a3fbc6a1a0b9b40f3 (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
<html>
<head>
<title>Crash [@ nsFocusManager::SendFocusOrBlurEvent] after switching focus to a different window in this case</title>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script>
SimpleTest.waitForExplicitFinish();

function done()
{
  is("passed", "passed", "test passed without crashing");
  SimpleTest.finish();
}

function switchFocus()
{
  setTimeout(() => window.open('497633.html', '_new', 'width=300,height=300'), 0);
}
</script>
</head>
<body>
  <iframe srcdoc="<html><meta charset='utf-8'>
      <head>
        <script>
          function run() {
            setTimeout(() => document.getElementById('a').focus(), 0);
          }
        </script>
      </head>
      <body onload='run()'>
        <button id='a' onfocus='parent.switchFocus()' onblur='window.frameElement.parentNode.removeChild(window.frameElement)'>Switching focus to a different program should not crash Mozilla</button>
      </body>
    </html>">
  </iframe>

<p id="display"></p>
<div id="content" style="display: none"></div>

</body>
</html>