Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/sourcemap-script.js |
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/sourcemap-script.js b/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/sourcemap-script.js |
| index a3ea573f90fe8ee46cf2aa62c93932527893ee6a..95ec2eeb7ca152d017eabcea4669bfbb94f5e9e9 100644 |
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/sourcemap-script.js |
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/sourcemap-script.js |
| @@ -1,2 +1,7 @@ |
| +window.foo = doFoo; |
| + |
| +function doFoo() { |
| + console.log('foo'); |
| +} |
| window.foo = console.log.bind(console, 'foo'); |
| //# 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
|