chromium/third_party/blink/web_tests/http/tests/devtools/elements/styles/resources/styles-url-linkify-iframe.html

<html>
<head>
<style>
#iframed {
    background-image: url( iframed.png );
}
</style>
<script>
function iframeOnload()
{
    window.parent.iframeLoaded = true;
}
</script>
</head>

<body onload="iframeOnload()">
<div id="iframed"></div>
</body>

</html>