blob: 93cc0d4489c90fc4a0e8533f26fa15ccee6e0a91 [file]
<!DOCTYPE html>
<html>
<head>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
testRunner.dumpResourceLoadCallbacks();
}
function loadCachedImageInIFrame()
{
var iframe = document.createElement("iframe");
document.body.appendChild(iframe);
iframe.onload = function() {
if (window.testRunner)
testRunner.notifyDone();
}
iframe.src = "resources/cached-image.html";
}
</script>
</head>
<body>
<img src="resources/compass.jpg" onload="loadCachedImageInIFrame()">
</body>
</html>