blob: 1d85c516de5ae85ff595af24e2e164c5ad9f77c1 [file] [log] [blame]
<!DOCTYPE html>
<!-- Loads passive mixed content on request. -->
<html>
<body>
<div id="container"></div>
<script>
function load_mixed() {
var img = document.createElement('img');
img.src = "http://a.test/image.jpg";
document.getElementById("container").appendChild(img);
};
</script>
</body>
</html>