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

Unified Diff: LayoutTests/http/tests/security/resources/green-background-allow-star-import.php

Issue 1011103002: Allow cross-origin cssRules access to CORS-fetched stylesheet. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: compile fix.. Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/security/resources/green-background-allow-star-import.php
diff --git a/LayoutTests/http/tests/security/resources/green-background-allow-star.php b/LayoutTests/http/tests/security/resources/green-background-allow-star-import.php
similarity index 78%
copy from LayoutTests/http/tests/security/resources/green-background-allow-star.php
copy to LayoutTests/http/tests/security/resources/green-background-allow-star-import.php
index c176c768a539e8615c9e4d72bd30c68292f49ac8..7c9304534d5656c5f8bfdaef3d9996a518861dac 100644
--- a/LayoutTests/http/tests/security/resources/green-background-allow-star.php
+++ b/LayoutTests/http/tests/security/resources/green-background-allow-star-import.php
@@ -1,7 +1,7 @@
<?php
header("Access-Control-Allow-Origin: *");
-$name = 'green-background.css';
+$name = 'green-background-import-anonymous.css';
$fp = fopen($name, 'rb');
header("Content-Type: text/css");
header("Content-Length: " . filesize($name));

Powered by Google App Engine
This is Rietveld 408576698