aboutsummaryrefslogtreecommitdiffstats
path: root/test/data
diff options
context:
space:
mode:
authorjaubourg <j@ubourg.net>2011-02-17 17:03:09 +0100
committerjaubourg <j@ubourg.net>2011-02-17 17:03:09 +0100
commit5b38439011799ae53156d137305d9440e0cddb0a (patch)
tree1555f58d0384fc9c01692f4445e01fe668d3444b /test/data
parentfaa6fe32f72900d7b31000caead2794a8346f6d8 (diff)
downloadjquery-5b38439011799ae53156d137305d9440e0cddb0a.tar.gz
jquery-5b38439011799ae53156d137305d9440e0cddb0a.zip
Fixes #8297. Makes sure response headers with empty values are handled properly and do not prevent proper parsing of the entire response headers string. Unit test amended.
Diffstat (limited to 'test/data')
-rw-r--r--test/data/headers.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/data/headers.php b/test/data/headers.php
index d500b16f4..968f13f19 100644
--- a/test/data/headers.php
+++ b/test/data/headers.php
@@ -1,6 +1,8 @@
<?php
header( "Sample-Header: Hello World" );
+header( "Empty-Header: " );
+header( "Sample-Header2: Hello World 2" );
$headers = array();