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

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

Issue 22254005: UMA data collector for cross-site documents(XSD) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: fix compile error Created 7 years, 4 months 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
(Empty)
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.htm l"></script>
11 </head>
12 <body>
13 This page tests that the renderer process does not crash even the response that
14 it requested is blocked by SiteIsolationPolicy for various targets. This page
15 should be loaded on a domain other than bar.com to be different from the
16 requested resource here.
17
18 image:<img src="http://bar.com/files/site_isolation/valid.html"></img><br/>
19
20
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 doesn't go through SiteIsolationPolicy -->
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 doesn't go through SiteIsolationPolicy -->
35 object:<object width="400" height="400"
36 data="http://bar.com/files/site_isolation/valid.html"></object><br/>
37
38 </body>
39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698