1
    2
    3
    4
    5
    6
    7
    8

content / test / data / nested_page_with_subresources.html [blame]

<!DOCTYPE html>
<body>
<script>
  var i = document.createElement("iframe");
  i.src = location.protocol + "//not-" + location.hostname + (location.port ? (":" + location.port) : "") + "/page_with_subresources.html";
  document.body.appendChild(i);
</script>
</body>