blob: 1484e8fe030c5e2b21d023323d5a7828b6b6320d [file] [log] [blame]
<!-- webkit-test-runner [ UsesBackForwardCache=true ] -->
<html>
<head>
<script>
// Opens two windows containing the same image. First window will populate the cache with
// image. The second window is opened with loadsImagesAutomatically unset, but image should
// still load since it is in cache.
function runTest()
{
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
document.getElementById('result').innerHTML = 'FAILURE: image1.html not loaded';
window.open("resources/image1.html", "_blank");
}
}
function image1Loaded()
{
window.internals.settings.setLoadsImagesAutomatically(false);
document.getElementById('result').innerHTML = 'FAILURE: image2.html not loaded';
window.setTimeout(function() {window.open("resources/image2.html", "_blank");}, 0);
}
function image2Loaded()
{
document.getElementById('result').innerHTML = 'PASS';
testRunner.notifyDone();
}
</script>
</head>
<body onload="runTest()">
Test that WebKitDisplayImagesKey unset does not block image in cache.
<div id="result">FAILURE: Test script didn't run.</div>
</body>
</html>