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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/security/resources/green-if-no-referrer-css.php

Issue 2495313002: Add referrerpolicy to style and import (Closed)
Patch Set: Fixed import tests Created 3 years, 11 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 header('Content-Type: text/css');
3 if ($_SERVER['HTTP_REFERER'] == '') {
4 echo "body { background-color: green; }";
5 } else {
6 echo "body { background-color: red; }";
7 }
8 ?>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698