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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector-protocol/cookies-protocol-test-expected.txt

Issue 2221093003: [Devtools] Backend support for setCookie (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Forgot to rename variables Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 Tests that cookies are set, updated and removed.
2
3 Test started
4 Enabling network
5
6 Running test: simpleCookieAdd
7 Setting Cookie
8 Logging Cookies
9 Success: true
10 Num of cookies 1
11 Cookie:
12 Domain: 127.0.0.1
13 Name: foo
14 Value: bar1
15 Path: /
16 HttpOnly: false
17 Secure: false
18 Session: true
19
20 Running test: simpleCookieChange
21 Setting Cookie
22 Logging Cookies
23 Success: true
24 Num of cookies 1
25 Cookie:
26 Domain: 127.0.0.1
27 Name: foo
28 Value: second bar2
29 Path: /
30 HttpOnly: false
31 Secure: false
32 Session: true
33
34 Running test: anotherSimpleCookieAdd
35 Setting Cookie
36 Logging Cookies
37 Success: true
38 Num of cookies 2
39 Cookie:
40 Domain: 127.0.0.1
41 Name: foo2
42 Value: bar1
43 Path: /
44 HttpOnly: false
45 Secure: false
46 Session: true
47 Cookie:
48 Domain: 127.0.0.1
49 Name: foo
50 Value: second bar2
51 Path: /
52 HttpOnly: false
53 Secure: false
54 Session: true
55
56 Running test: simpleCookieDelete
57 Deleting Cookie
58 Logging Cookies
59 Num of cookies 1
60 Cookie:
61 Domain: 127.0.0.1
62 Name: foo2
63 Value: bar1
64 Path: /
65 HttpOnly: false
66 Secure: false
67 Session: true
68
69 Running test: deleteAllCookies
70 Removing All Cookies
71 Logging Cookies
72 Num of cookies 0
73
74 Running test: sessionCookieAdd
75 Setting Cookie
76 Logging Cookies
77 Success: true
78 Num of cookies 1
79 Cookie:
80 Domain: 127.0.0.1
81 Name: foo
82 Value: bar4
83 Path: /
84 HttpOnly: false
85 Secure: false
86 Session: true
87
88 Running test: deleteAllCookies
89 Removing All Cookies
90 Logging Cookies
91 Num of cookies 0
92
93 Running test: nonSessionCookieZeroAdd
94 Setting Cookie
95 Logging Cookies
96 Success: true
97 Num of cookies 0
98
99 Running test: deleteAllCookies
100 Removing All Cookies
101 Logging Cookies
102 Num of cookies 0
103
104 Running test: nonSessionCookieAdd
105 Setting Cookie
106 Logging Cookies
107 Success: true
108 Num of cookies 1
109 Cookie:
110 Domain: 127.0.0.1
111 Name: foo
112 Value: bar6
113 Path: /
114 HttpOnly: false
115 Secure: false
116 Session: false
117
118 Running test: deleteAllCookies
119 Removing All Cookies
120 Logging Cookies
121 Num of cookies 0
122
123 Running test: differentOriginCookieAdd
124 Setting Cookie
125 Logging Cookies
126 Success: true
127 Num of cookies 0
128
129 Running test: invalidCookieAddDomain
130 Setting Cookie
131 Logging Cookies
132 Success: false
133 Num of cookies 0
134
135 Running test: invalidCookieAddName
136 Setting Cookie
137 Logging Cookies
138 Success: false
139 Num of cookies 0
140
141 Running test: deleteAllCookies
142 Removing All Cookies
143 Logging Cookies
144 Num of cookies 0
145
146 Running test: secureCookieAdd
147 Setting Cookie
148 Logging Cookies
149 Success: false
150 Num of cookies 0
151
152 Running test: deleteAllCookies
153 Removing All Cookies
154 Logging Cookies
155 Num of cookies 0
156
157 Running test: cookieAddHttpOnly
158 Setting Cookie
159 Logging Cookies
160 Success: true
161 Num of cookies 1
162 Cookie:
163 Domain: 127.0.0.1
164 Name: foo
165 Value: bar
166 Path: /
167 HttpOnly: true
168 Secure: false
169 Session: true
170
171 Running test: deleteAllCookies
172 Removing All Cookies
173 Logging Cookies
174 Num of cookies 0
175
176 Running test: cookieAddSameSiteLax
177 Setting Cookie
178 Logging Cookies
179 Success: true
180 Num of cookies 1
181 Cookie:
182 Domain: 127.0.0.1
183 Name: foo
184 Value: bar
185 Path: /
186 HttpOnly: false
187 Secure: false
188 Session: true
189
190 Running test: deleteAllCookies
191 Removing All Cookies
192 Logging Cookies
193 Num of cookies 0
194
195 Running test: cookieAddSameSiteLax
196 Setting Cookie
197 Logging Cookies
198 Success: true
199 Num of cookies 1
200 Cookie:
201 Domain: 127.0.0.1
202 Name: foo
203 Value: bar
204 Path: /
205 HttpOnly: false
206 Secure: false
207 Session: true
208
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698