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

Unified Diff: tests/standalone/io/http_cookie_test.dart

Issue 443373003: Make the default HTTP server configuration more secure (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed more review comments Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/io/http_impl.dart ('k') | tests/standalone/io/http_detach_socket_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/http_cookie_test.dart
diff --git a/tests/standalone/io/http_cookie_test.dart b/tests/standalone/io/http_cookie_test.dart
index 94c383bceca47071cc515de46605df4f3e1bdeae..3ffb090d50b6436a5ce5c2d96cccaaa0a915a5de 100644
--- a/tests/standalone/io/http_cookie_test.dart
+++ b/tests/standalone/io/http_cookie_test.dart
@@ -42,6 +42,7 @@ void testCookies() {
var cookiesMap = {};
response.cookies.forEach((c) => cookiesMap[c.name] = c.value);
Expect.mapEquals(cookies[i], cookiesMap);
+ response.cookies.forEach((c) => Expect.isTrue(c.httpOnly));
response.listen(
(d) {},
onDone: () {
« no previous file with comments | « sdk/lib/io/http_impl.dart ('k') | tests/standalone/io/http_detach_socket_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698