Index: LayoutTests/http/tests/security/resources/cors-style.php |
diff --git a/LayoutTests/http/tests/security/resources/cors-style.php b/LayoutTests/http/tests/security/resources/cors-style.php |
new file mode 100644 |
index 0000000000000000000000000000000000000000..79a91ba284a40e71aad8e28a738dfd8c1231d71b |
--- /dev/null |
+++ b/LayoutTests/http/tests/security/resources/cors-style.php |
@@ -0,0 +1,7 @@ |
+<?php |
+if (strtolower($_GET["cors"]) != "false") { |
+ header("Access-Control-Allow-Origin: http://127.0.0.1:8000"); |
+} |
+header("Content-Type: text/css"); |
+echo ".id1 { background-color: yellow }"; |
+?> |