Title: [183623] trunk/LayoutTests
Revision
183623
Author
an...@apple.com
Date
2015-04-30 00:39:21 -0700 (Thu, 30 Apr 2015)

Log Message

These should be saying HTTP/1.1 not HTTP/1.0

* http/tests/cache/resources/iframe304.php:
* http/tests/cache/resources/iframe304body.php:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (183622 => 183623)


--- trunk/LayoutTests/ChangeLog	2015-04-30 07:13:07 UTC (rev 183622)
+++ trunk/LayoutTests/ChangeLog	2015-04-30 07:39:21 UTC (rev 183623)
@@ -1,3 +1,10 @@
+2015-04-30  Antti Koivisto  <an...@apple.com>
+
+        These should be saying HTTP/1.1 not HTTP/1.0
+
+        * http/tests/cache/resources/iframe304.php:
+        * http/tests/cache/resources/iframe304body.php:
+
 2015-04-29  Joseph Pecoraro  <pecor...@apple.com>
 
         [Win] Update baselines after r183610.

Modified: trunk/LayoutTests/http/tests/cache/resources/iframe304.php (183622 => 183623)


--- trunk/LayoutTests/http/tests/cache/resources/iframe304.php	2015-04-30 07:13:07 UTC (rev 183622)
+++ trunk/LayoutTests/http/tests/cache/resources/iframe304.php	2015-04-30 07:39:21 UTC (rev 183623)
@@ -4,7 +4,7 @@
 clearstatcache();
 
 if ($_SERVER["HTTP_IF_MODIFIED_SINCE"]) {
-    header("HTTP/1.0 304 Not Modified");
+    header("HTTP/1.1 304 Not Modified");
     exit();
 }
 $_one_year_ = 12 * 31 * 24 * 60 * 60;

Modified: trunk/LayoutTests/http/tests/cache/resources/iframe304body.php (183622 => 183623)


--- trunk/LayoutTests/http/tests/cache/resources/iframe304body.php	2015-04-30 07:13:07 UTC (rev 183622)
+++ trunk/LayoutTests/http/tests/cache/resources/iframe304body.php	2015-04-30 07:39:21 UTC (rev 183623)
@@ -4,7 +4,7 @@
 clearstatcache();
 
 if ($_SERVER["HTTP_IF_MODIFIED_SINCE"]) {
-    header("HTTP/1.0 304 Not Modified");
+    header("HTTP/1.1 304 Not Modified");
     exit();
 }
 header('Cache-Control: no-cache');
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to