blob: 15d633e6cabfc39fb11302068d0d60833b4acea6 [file] [log] [blame]
<html>
<body>
https://bugs.webkit.org/show_bug.cgi?id=49693<br>
Ensure loads that go through our scheduler and are cancelled by willSendRequest() don't cause us to crash.
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.setWillSendRequestReturnsNull(true);
}
var img = new Image(1, 1);
document.getElementsByTagName("body")[0].appendChild(img);
img.src = "does-not-exist.html";
</script>
</body>
</html>