Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <!-- This page tests that the renderer process does not crash even the response | |
|
Charlie Reis
2013/08/22 18:23:30
nit: Just move this text into the body of the page
dsjang
2013/08/22 19:05:55
Done.
| |
| 3 that it requested is blocked by SiteIsolationPolicy for various targets. This | |
| 4 page should be loaded on a domain other than bar.com to be different from the | |
| 5 requested resource here. --> | |
| 6 <head> | |
| 7 <!-- favicon --> | |
| 8 <link rel="icon" | |
| 9 type="image/png" | |
| 10 href="http://bar.com/files/site_isolation/valid.html"> | |
| 11 <!-- css --> | |
| 12 <link rel="stylesheet" type="text/css" href="http://bar.com/files/site_isolation /valid.html"> | |
| 13 <!-- script --> | |
| 14 <script language="javascript" src="http://bar.com/files/site_isolation/valid.htm l"></script> | |
| 15 </head> | |
| 16 <body> | |
| 17 <!-- image --> | |
|
Charlie Reis
2013/08/22 18:23:30
nit: No need for the redundant HTML comment if you
dsjang
2013/08/22 19:05:55
Done.
| |
| 18 image:<img src="http://bar.com/files/site_isolation/valid.html"></img><br/> | |
| 19 | |
| 20 <!-- font --> | |
| 21 font: | |
| 22 <style media="screen" type="text/css"> | |
| 23 @font-face { | |
| 24 font-family: "myfont"; | |
| 25 src: url("http://bar.com/files/site_isolation/valid.html") format('woff'); | |
| 26 } | |
| 27 </style><br/> | |
| 28 | |
| 29 <!-- The renderer creates an iframe for a file with .html extension, so this | |
| 30 should be fixed later. --> | |
|
Charlie Reis
2013/08/22 18:23:30
Can you clarify what "should be fixed" means?
dsjang
2013/08/22 19:05:55
Done.
| |
| 31 embed:<embed src="http://bar.com/files/site_isolation/valid.html"></embed><br/> | |
| 32 | |
| 33 <!-- The renderer creates an iframe for a file with .html extension, so this | |
| 34 should be fixed later. --> | |
| 35 object:<object width="400" height="400" | |
| 36 data="http://bar.com/files/site_isolation/valid.html"></object><br/> | |
| 37 | |
| 38 </body> | |
| 39 </html> | |
| OLD | NEW |