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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/resources/respond-with-allow-csp-from-multiple-headers.php

Issue 2404373003: Experimental Feature: Allow-CSP-From header (Closed)
Patch Set: Better format of ContentSecurityPolicyTest.ShouldEnforceEmbeddersPolicy Created 4 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
OLDNEW
(Empty)
1 <?php
2 $allow_csp_from = isset($_GET['allow_csp_from']) ? $_GET['allow_csp_from'] : null;
3 if ($allow_csp_from)
4 header('Allow-CSP-From: ' . $allow_csp_from, false);
5 $allow_csp_from_2 = isset($_GET['allow_csp_from_2']) ? $_GET['allow_csp_from _2'] : null;
6 if ($allow_csp_from_2)
7 header('Allow-CSP-From: ' . $allow_csp_from_2, false);
8 ?>
9 <!DOCTYPE html>
10 <html>
11 <head>
12 <title>This page enforces embedder's policies</title>
13 </head>
14 <body>
15 Hello World.
16 <iframe src="/cross-site/b.com/title2.html"></iframe>
17 <img src="green250x50.png" />
18 <script> alert("Hello from iframe");</script>
19 <script> window.top.postMessage('loaded', '*'); </script>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698