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

Side by Side Diff: LayoutTests/http/tests/security/contentSecurityPolicy/manifest-src-blocked.html

Issue 570563003: Implement CSP check for manifest fetching (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase corrected Created 6 years, 2 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <meta http-equiv="Content-Security-Policy" content="manifest-src *">
Mike West 2014/10/06 10:03:59 This should probably be "manifest-src 'none'".
2 <link rel="manifest" href="manifest.test/manifest.json">
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpAsText();
6 testRunner.waitUntilDone();
7 testRunner.getManifestThen(function() {
8 alert("Pass");
9 testRunner.notifyDone();
10 });
11 }
12 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698