chromium/third_party/blink/web_tests/editing/caret/caret-hidden-when-unfocused-expected.html

<html>
<body>
<iframe id="firstFrame">
</iframe>
<iframe id="secondFrame">
</iframe>

<script>
var secondFrame = document.getElementById('secondFrame');
secondFrame.contentDocument.documentElement.contentEditable = true;
secondFrame.contentDocument.documentElement.focus();
</script>

</body>
</html>