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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/sourcemap-script.js

Issue 2832943002: DevTools: properly handle target suspension/resuming in NetworkProject (Closed)
Patch Set: add tests 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 unified diff | Download patch
OLDNEW
1 window.foo = doFoo;
2
3 function doFoo() {
4 console.log('foo');
5 }
1 window.foo = console.log.bind(console, 'foo'); 6 window.foo = console.log.bind(console, 'foo');
2 //# sourceMappingURL=sourcemap-script.js.map 7 //# sourceMappingURL=sourcemap-script.js.map
dgozman 2017/05/05 06:10:54 Don't you have to change the map as well?
lushnikov 2017/05/05 20:58:26 The sourcemap has a single entry which maps the be
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698