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

Unified Diff: test/inspector/debugger/stepping-ignores-injected-script.js

Issue 2890463004: [inspector] Refactor inspector test (Closed)
Patch Set: better crash fix Created 3 years, 7 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
Index: test/inspector/debugger/stepping-ignores-injected-script.js
diff --git a/test/inspector/debugger/stepping-ignores-injected-script.js b/test/inspector/debugger/stepping-ignores-injected-script.js
index 31c958084a30c90bc9e921f26167ec2762f60339..2b9e4aa7d7cf2f100160c79b79a8ec1a36b30d43 100644
--- a/test/inspector/debugger/stepping-ignores-injected-script.js
+++ b/test/inspector/debugger/stepping-ignores-injected-script.js
@@ -3,7 +3,7 @@
// found in the LICENSE file.
Protocol.Debugger.onPaused(message => {
- let url = InspectorTest._scriptMap.get(message.params.callFrames[0].location.scriptId).url;
+ let url = InspectorTest.session._scriptMap.get(message.params.callFrames[0].location.scriptId).url;
if (url !== 'test.js') {
InspectorTest.log('InjectedSciptSource on stack.');
InspectorTest.completeTest();

Powered by Google App Engine
This is Rietveld 408576698