Chromium Code Reviews| Index: tests/standalone/src/io/HttpParserTest.dart |
| =================================================================== |
| --- tests/standalone/src/io/HttpParserTest.dart (revision 6032) |
| +++ tests/standalone/src/io/HttpParserTest.dart (working copy) |
| @@ -540,6 +540,9 @@ |
| // Currently no HTTP 1.0 support. |
| request = "GET / HTTP/1.0\r\n\r\n"; |
| _testParseInvalidRequest(request); |
| + |
| + request = "GET / HTTP/1.1\r\nKeep-Alive: False\r\nbadheader\r\n\r\n"; |
| + _testParseInvalidRequest(request); |
|
Søren Gjesse
2012/04/02 07:36:02
You should open a bug on this, and then wrap this
Anders Johnsen
2012/04/02 08:19:01
Done.
|
| } |
| static void testParseInvalidResponse() { |