summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/1368327.html
blob: ab2755f644d0a632ee2a5e409fa1e2f1d68fb38d (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
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <meta charset="utf-8">
    <title>Test window.location</title>
    <script type="application/javascript">
    function test() {
      content = document.querySelector("#content");
      testFrame = document.querySelector("#testframe");
      frameWindow = testFrame.contentWindow;
      testframe.remove();

      // Shouldn't crash at this line.
      content.textContent = "location=" + frameWindow.location;

      document.documentElement.className = "";
    }
    </script>
  </head>
  <body>
    <p id="content"></p>
    <iframe id="testframe" src="1368327-iframe.html" onload="setTimeout(test, 0);"></iframe>
  </body>
</html>