chromium/chrome/test/data/devtools/push_test_page.html

<html>
<script>
function addImage(url)
{
    var image = document.createElement("img");
    image.src = url;
    document.body.appendChild(image);
}
</script>
<body>
</body>
</html>