Index: third_party/WebKit/LayoutTests/http/tests/inspector-protocol/cookies-protocol-test-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/cookies-protocol-test-expected.txt b/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/cookies-protocol-test-expected.txt |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2610c3a6801bac87d0dc0b44b186d9c354592e1c |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/cookies-protocol-test-expected.txt |
@@ -0,0 +1,98 @@ |
+Tests that cookies are set, updated and removed. |
+ |
+Test started |
+Enabling network |
+ |
+Running test: simpleCookieAdd |
+Setting Cookie |
+Logging Cookies |
+Num of cookies 1 |
+ Cookie: |
+ Domain: 127.0.0.1 |
+ Name: foo |
+ Value: bar |
+ Path: / |
+ HttpOnly: false |
+ Secure: false |
+ Session: true |
+ |
+Running test: simpleCookieChange |
+Setting Cookie |
+Logging Cookies |
+Num of cookies 1 |
+ Cookie: |
+ Domain: 127.0.0.1 |
+ Name: foo |
+ Value: second bar |
+ Path: / |
+ HttpOnly: false |
+ Secure: false |
+ Session: true |
+ |
+Running test: simpleCookieDelete |
+Deleting Cookie |
+Logging Cookies |
+Num of cookies 0 |
+ |
+Running test: sessionCookieAdd |
+Setting Cookie |
+Logging Cookies |
+Num of cookies 1 |
+ Cookie: |
+ Domain: 127.0.0.1 |
+ Name: foo |
+ Value: bar |
+ Path: / |
+ HttpOnly: false |
+ Secure: false |
+ Session: true |
+ |
+Running test: deleteAllCookies |
+Removing All Cookies |
+Logging Cookies |
+Num of cookies 1 |
+ Cookie: |
+ Domain: 127.0.0.1 |
+ Name: foo |
+ Value: bar |
+ Path: / |
+ HttpOnly: false |
+ Secure: false |
+ Session: true |
+ |
+Running test: nonSessionCookieZeroAdd |
+Setting Cookie |
+Logging Cookies |
+Num of cookies 0 |
+ |
+Running test: deleteAllCookies |
+Removing All Cookies |
+Logging Cookies |
+Num of cookies 0 |
+ |
+Running test: nonSessionCookieAdd |
+Setting Cookie |
+Logging Cookies |
+Num of cookies 1 |
+ Cookie: |
+ Domain: 127.0.0.1 |
+ Name: foo |
+ Value: bar |
+ Path: / |
+ HttpOnly: false |
+ Secure: false |
+ Session: false |
+ |
+Running test: invalidCookieAdd |
+Setting Cookie |
+Logging Cookies |
+Num of cookies 1 |
+ Cookie: |
+ Domain: 127.0.0.1 |
+ Name: foo |
+ Value: bar |
+ Path: / |
+ HttpOnly: false |
+ Secure: false |
+ Session: false |
+ |