| Index: LayoutTests/http/tests/htmlimports/resources/cors-csp-blocking.cgi
|
| diff --git a/LayoutTests/http/tests/htmlimports/resources/cors-csp-blocking.cgi b/LayoutTests/http/tests/htmlimports/resources/cors-csp-blocking.cgi
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..ac9e000d8024ec8991fbf26b7f7ac0bf2aef44e1
|
| --- /dev/null
|
| +++ b/LayoutTests/http/tests/htmlimports/resources/cors-csp-blocking.cgi
|
| @@ -0,0 +1,11 @@
|
| +#!/usr/bin/perl -wT
|
| +use strict;
|
| +
|
| +print "Content-Type: text/html\n";
|
| +print "Content-Security-Policy: script-src 'unsafe-inline'\n";
|
| +print "Access-Control-Allow-Credentials: true\n";
|
| +print "Access-Control-Allow-Origin: http://127.0.0.1:8000\n\n";
|
| +
|
| +print "<html><head>";
|
| +print "<link id=\"shouldBeImported\" rel=\"import\" href=\"cors-basic.cgi\">";
|
| +print "</head></html>\n";
|
|
|