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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/security/resources/pass-if-no-referrer.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 if ($_SERVER['HTTP_REFERER'] == '') {
3 http_response_code(200);
4 } else {
5 http_response_code(500);
6 }
7 header('Content-Type: text/html');
8 ?>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698