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

Side by Side Diff: LayoutTests/inspector/console/resources/stack-with-sourceMap.js

Issue 674513002: DevTools: linkify relative links in console.log(new Error().stack) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix tests Created 6 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Generated by CoffeeScript 1.7.1
2 (function() {
3 var Failure;
4
5 Failure = (function() {
6 function Failure() {}
7
8 Failure.prototype.letsFailWithStack = function() {
9 return console.log((new Error()).stack);
10 };
11
12 return Failure;
13
14 })();
15
16 window.failure = function() {
17 var failure;
18 failure = new Failure;
19 return failure.letsFailWithStack();
20 };
21
22 }).call(this);
23
24 //# sourceMappingURL=stack-with-sourceMap.map
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698