Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / content / test / data / cross_site_document_request_target.html
blobe00db77c5ec34d3716a724a8d9de5ea5adb48288
1 <html>
2 <head>
3 <!-- favicon -->
4 <link rel="icon"
5 type="image/png"
6 href="http://bar.com/files/site_isolation/valid.html">
7 <!-- css -->
8 <link rel="stylesheet" type="text/css" href="http://bar.com/files/site_isolation/valid.html">
9 <!-- script -->
10 <script language="javascript" src="http://bar.com/files/site_isolation/valid.html"></script>
11 </head>
12 <body>
14 <p>This page tests that the renderer process does not crash even if the response
15 that it requested is blocked by site isolation for various targets. This page
16 should be loaded on a domain other than bar.com to be different from the
17 requested resource here.</p>
19 image:<img src="http://bar.com/files/site_isolation/valid.html"></img><br/>
22 font:
23 <style media="screen" type="text/css">
24 @font-face {
25 font-family: "myfont";
26 src: url("http://bar.com/files/site_isolation/valid.html") format('woff');
28 </style><br/>
30 <!-- The renderer creates an iframe for a file with .html extension, so this
31 shouldn't be blocked -->
32 embed:<embed src="http://bar.com/files/site_isolation/valid.html"></embed><br/>
34 <!-- The renderer creates an iframe for a file with .html extension, so this
35 shouldn't be blocked -->
36 object:<object width="400" height="400"
37 data="http://bar.com/files/site_isolation/valid.html"></object><br/>
39 </body>
40 </html>