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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector-protocol/resources/interception-test.js

Issue 2942573003: [DevTools] New harness for inspector-protocol layout tests (Closed)
Patch Set: Protocol -> dp Created 3 years, 6 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
1 var initialize_InterceptionTest = function() { 1 var initialize_InterceptionTest = function() {
2 2
3 var interceptionRequestParams = {}; 3 var interceptionRequestParams = {};
4 var requestIdToFilename = {}; 4 var requestIdToFilename = {};
5 var filenameToInterceptionId = {}; 5 var filenameToInterceptionId = {};
6 var loggedMessages = {}; 6 var loggedMessages = {};
7 var InterceptionIdToCanonicalInterceptionId = {}; 7 var InterceptionIdToCanonicalInterceptionId = {};
8 var idToCanoncalId = {}; 8 var idToCanoncalId = {};
9 var nextId = 1; 9 var nextId = 1;
10 10
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 "interceptionId": event.params.interceptionId, 286 "interceptionId": event.params.interceptionId,
287 "authChallengeResponse": { 287 "authChallengeResponse": {
288 "response": "ProvideCredentials", 288 "response": "ProvideCredentials",
289 "username": username, 289 "username": username,
290 "password": password 290 "password": password
291 } 291 }
292 }); 292 });
293 } 293 }
294 294
295 } 295 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698