gecko-dev/dom/base/crashtests/1368327.html
Samael Wang fbc657f448 Bug 1368327 - Do not assert aDocShell in Location, since it's actually possible to be nullptr. r=smaug
MozReview-Commit-ID: ArqkI8TUf8r

--HG--
extra : rebase_source : 9d6850bb6f27293a8e68ecc5c521e4ae769da455
2017-08-28 17:12:47 +08:00

25 lines
691 B
HTML

<!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>