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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/loading/resources/no-cache-css.php

Issue 2353903002: {CSS,XSL}StyleSheetResource should mark their clients as finished on checkNotify (Closed)
Patch Set: yhirano style Created 4 years, 2 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 $etag = "must-have-some-etag";
3 if (isset($_SERVER['HTTP_IF_NONE_MATCH']) && stripslashes($_SERVER['HTTP_IF_NONE _MATCH']) == $etag) {
4 header("HTTP/1.0 304 Not Modified");
5 die;
6 }
7 header("ETag: " . $etag);
8 header("Cache-Control: no-cache");
9 header("Content-Type: text/css");
10 ?>
11 #markred { color: red; }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698