chromium/third_party/blink/web_tests/http/tests/devtools/elements/styles/resources/styles-source-lines-inline-iframe.html

<html>
<head>
<style>
.bar {
    color: red;
}
</style>
<script>
function iframeOnload()
{
    window.parent.iframeLoaded = true;
}
</script>
</head>

<body onload="iframeOnload()">
<div id="bar" class="bar">Bar</div>
</body>

</html>