Update broken references to image assets
[chromium-blink-merge.git] / content / test / data / frame_tree / page_with_one_frame.html
blob9b84deac89e710f9dfb99b6300ba265aea4a3e4c
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 function addFrame(url, sandbox) {
6 var frame = document.createElement('iframe');
7 frame.src = url;
8 if (sandbox)
9 frame.sandbox = sandbox;
10 document.body.appendChild(frame);
12 </script>
13 </head>
14 <body>
15 This page has one cross-site iframe.
16 <iframe src="/cross-site/baz.com/title1.html"></iframe>
17 </body>
18 </html>