| Index: third_party/WebKit/LayoutTests/http/tests/loading/resources/no-cache-css.php
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/loading/resources/no-cache-css.php b/third_party/WebKit/LayoutTests/http/tests/loading/resources/no-cache-css.php
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..686a3e5d04b6613bd400587e0d38cdca862d4d11
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/loading/resources/no-cache-css.php
|
| @@ -0,0 +1,11 @@
|
| +<?php
|
| +$etag = "must-have-some-etag";
|
| +if (isset($_SERVER['HTTP_IF_NONE_MATCH']) && stripslashes($_SERVER['HTTP_IF_NONE_MATCH']) == $etag) {
|
| + header("HTTP/1.0 304 Not Modified");
|
| + die;
|
| +}
|
| +header("ETag: " . $etag);
|
| +header("Cache-Control: no-cache");
|
| +header("Content-Type: text/css");
|
| +?>
|
| +#markred { color: red; }
|
|
|