Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Side by Side Diff: content/test/data/cross_site_document_request_target.html

Issue 1411073005: Migrating tests to use EmbeddedTestServer (/content) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <!-- favicon --> 3 <!-- favicon -->
4 <link rel="icon" 4 <link rel="icon"
5 type="image/png" 5 type="image/png"
6 href="http://bar.com/files/site_isolation/valid.html"> 6 href="http://bar.com/site_isolation/valid.html">
7 <!-- css --> 7 <!-- css -->
8 <link rel="stylesheet" type="text/css" href="http://bar.com/files/site_isolation /valid.html"> 8 <link rel="stylesheet" type="text/css" href="http://bar.com/site_isolation/valid .html">
9 <!-- script --> 9 <!-- script -->
10 <script language="javascript" src="http://bar.com/files/site_isolation/valid.htm l"></script> 10 <script language="javascript" src="http://bar.com/site_isolation/valid.html"></s cript>
11 </head> 11 </head>
12 <body> 12 <body>
13 13
14 <p>This page tests that the renderer process does not crash even if the response 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 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 16 should be loaded on a domain other than bar.com to be different from the
17 requested resource here.</p> 17 requested resource here.</p>
18 18
19 image:<img src="http://bar.com/files/site_isolation/valid.html"></img><br/> 19 image:<img src="http://bar.com/site_isolation/valid.html"></img><br/>
20 20
21 21
22 font: 22 font:
23 <style media="screen" type="text/css"> 23 <style media="screen" type="text/css">
24 @font-face { 24 @font-face {
25 font-family: "myfont"; 25 font-family: "myfont";
26 src: url("http://bar.com/files/site_isolation/valid.html") format('woff'); 26 src: url("http://bar.com/site_isolation/valid.html") format('woff');
27 } 27 }
28 </style><br/> 28 </style><br/>
29 29
30 <!-- The renderer creates an iframe for a file with .html extension, so this 30 <!-- The renderer creates an iframe for a file with .html extension, so this
31 shouldn't be blocked --> 31 shouldn't be blocked -->
32 embed:<embed src="http://bar.com/files/site_isolation/valid.html"></embed><br/> 32 embed:<embed src="http://bar.com/site_isolation/valid.html"></embed><br/>
33 33
34 <!-- The renderer creates an iframe for a file with .html extension, so this 34 <!-- The renderer creates an iframe for a file with .html extension, so this
35 shouldn't be blocked --> 35 shouldn't be blocked -->
36 object:<object width="400" height="400" 36 object:<object width="400" height="400"
37 data="http://bar.com/files/site_isolation/valid.html"></object><br/> 37 data="http://bar.com/site_isolation/valid.html"></object><br/>
38 38
39 </body> 39 </body>
40 </html> 40 </html>
OLDNEW
« no previous file with comments | « content/test/data/cross_site_document_request.html ('k') | content/test/data/cross_site_iframe_factory.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698