summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/637116.html
blob: 01e8cd4180ae5a193d0d52b4f3bc1a8bc260c55a (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
<!DOCTYPE html>
<html>

<head>
<script>

function K(v) { return function() { return v; } }

var errorProxy = new Proxy({}, {get: function() { throw new Error(); }});

function boom()
{
  var focused = document.createElementNS("http://www.w3.org/1999/xhtml", "input");
  document.body.appendChild(focused);
  var otherWin = window.open("data:text/html,1", "_blank", "width=200,height=200");
  try { otherWin.history.replaceState(errorProxy, "title", "replaceState.html"); } catch(e) {}
  focused.focus();
  focused.addEventListener("foo", K(otherWin.applicationCache), false);
  otherWin.close();
}

</script>
</head>

<body onload="boom();">
<button onclick="boom();">If you have popups blocked, click here to start the leak test</button>
</body>

</html>