blob: 9b84deac89e710f9dfb99b6300ba265aea4a3e4c [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
function addFrame(url, sandbox) {
var frame = document.createElement('iframe');
frame.src = url;
if (sandbox)
frame.sandbox = sandbox;
document.body.appendChild(frame);
}
</script>
</head>
<body>
This page has one cross-site iframe.
<iframe src="/cross-site/baz.com/title1.html"></iframe>
</body>
</html>