Source code
Revision control
Copy as Markdown
Other Tools
<html>
<head>
<title>Nested frame</title>
<script>
function proceed() {
parent.parent.postMessage({call: "frameLoaded", testname: "frame_b", uri: window.location.toString()}, "*");
}
</script>
</head>
<body>
<tt>IFRAME B</tt><br/>
<iframe src='http://sampleuser:samplepass@example.com/tests/dom/security/test/csp/file_frameancestors_userpass_frame_d.html'
onerror="proceed()"
onload="proceed()"></iframe><br/>
</body>
</html>