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

Side by Side Diff: third_party/WebKit/ManualTests/inspector/named-evals.html

Issue 1470323003: [DevTools] Removed support deprecated (//@|/*@) source(URL|MappingURL)= (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 4
5 function log(message) { 5 function log(message) {
6 console.log(message) 6 console.log(message)
7 } 7 }
8 8
9 var funcBody = "(){\n" + 9 var funcBody = "(){\n" +
10 " var thisFunc = arguments.callee;\n" + 10 " var thisFunc = arguments.callee;\n" +
11 " if (!thisFunc.name) thisFunc.displayName = 'f%';\n" + 11 " if (!thisFunc.name) thisFunc.displayName = 'f%';\n" +
12 " log(thisFunc.name || thisFunc.displayName);\n" + 12 " log(thisFunc.name || thisFunc.displayName);\n" +
13 "}"; 13 "}";
14 14
15 var funcs = []; 15 var funcs = [];
16 var patterns = [ 16 var patterns = [
17 // proper use of @sourceURL comment 17 // proper use of #sourceURL comment
18 "//@sourceURL=f%.js\nfuncs.push(function" + funcBody + ")", 18 "//#sourceURL=f%.js\nfuncs.push(function" + funcBody + ")",
19 "//@sourceURL=f%.js\nfuncs.push(function f%" + funcBody + ")", 19 "//#sourceURL=f%.js\nfuncs.push(function f%" + funcBody + ")",
20 " //@sourceURL=f%.js\nfuncs.push(function f%" + funcBody + ")", 20 " //#sourceURL=f%.js\nfuncs.push(function f%" + funcBody + ")",
21 "// @sourceURL=f%.js\nfuncs.push(function f%" + funcBody + ")", 21 "// #sourceURL=f%.js\nfuncs.push(function f%" + funcBody + ")",
22 "//@ sourceURL=f%.js\nfuncs.push(function f%" + funcBody + ")", 22 "//# sourceURL=f%.js\nfuncs.push(function f%" + funcBody + ")",
23 "//@sourceURL =f%.js\nfuncs.push(function f%" + funcBody + ")", 23 "//#sourceURL =f%.js\nfuncs.push(function f%" + funcBody + ")",
24 "//@sourceURL= f%.js\nfuncs.push(function f%" + funcBody + ")", 24 "//#sourceURL= f%.js\nfuncs.push(function f%" + funcBody + ")",
25 "//@sourceURL=f%.js \nfuncs.push(function f%" + funcBody + ")", 25 "//#sourceURL=f%.js \nfuncs.push(function f%" + funcBody + ")",
26 " // @ sourceURL = f%.js \nfuncs.push(function f%" + funcBody + ")", 26 " // # sourceURL = f%.js \nfuncs.push(function f%" + funcBody + ")",
27 "//@sourceURL=f%.js\nfuncs.push(function f%" + funcBody + ");\n//@sourceURL= should-not-see\n", 27 "//#sourceURL=f%.js\nfuncs.push(function f%" + funcBody + ");\n//#sourceURL= should-not-see\n",
28 "funcs.push(function f%" + funcBody + ")\n//@sourceURL=f%.js\n", 28 "funcs.push(function f%" + funcBody + ")\n//#sourceURL=f%.js\n",
29 "funcs.push(function f%" + funcBody + ")\n//@sourceURL=f%.js \n", 29 "funcs.push(function f%" + funcBody + ")\n//#sourceURL=f%.js \n",
30 "funcs.push(function f%" + funcBody + ")\n//@sourceURL=f%.js", 30 "funcs.push(function f%" + funcBody + ")\n//#sourceURL=f%.js",
31 31
32 // improper or non-existant use of @sourceURL comment 32 // improper or non-existant use of #sourceURL comment
33 "funcs.push(function f%" + funcBody + ")", 33 "funcs.push(function f%" + funcBody + ")",
34 "//@sourceurl=f%.js\nfuncs.push(function f%" + funcBody + ")", 34 "//#sourceurl=f%.js\nfuncs.push(function f%" + funcBody + ")",
35 "//sourceURL=f%.js\nfuncs.push(function f%" + funcBody + ")", 35 "//sourceURL=f%.js\nfuncs.push(function f%" + funcBody + ")",
36 "/*@sourceURL=f%.js*/\nfuncs.push(function f%" + funcBody + ")", 36 "/*#sourceURL=f%.js*/\nfuncs.push(function f%" + funcBody + ")",
37 "//\nsourceURL='f%.js';\nfuncs.push(function f%" + funcBody + ")", 37 "//\nsourceURL='f%.js';\nfuncs.push(function f%" + funcBody + ")",
38 "//@sourceURL=\nfuncs.push(function" + funcBody + ")", 38 "//#sourceURL=\nfuncs.push(function" + funcBody + ")",
39 ]; 39 ];
40 40
41 41
42 for (var i=0; i<patterns.length; i++) { 42 for (var i=0; i<patterns.length; i++) {
43 eval(patterns[i].replace(/%/g, i)); 43 eval(patterns[i].replace(/%/g, i));
44 } 44 }
45 45
46 </script> 46 </script>
47 </head> 47 </head>
48 48
49 <body> 49 <body>
50 <p>This page's JavaScript calls functions from named eval()'s. 50 <p>This page's JavaScript calls functions from named eval()'s.
51 51
52 <p>Used to test <a href="https://bugs.webkit.org/show_bug.cgi?id=25475">https:// bugs.webkit.org/show_bug.cgi?id=25475</a> 52 <p>Used to test <a href="https://bugs.webkit.org/show_bug.cgi?id=25475">https:// bugs.webkit.org/show_bug.cgi?id=25475</a>
53 53
54 <p>Load the Web Inspector and look at 54 <p>Load the Web Inspector and look at
55 the script's panel, and the script list drop-down control. 55 the script's panel, and the script list drop-down control.
56 You should see entries for scripts named 56 You should see entries for scripts named
57 <tt>"(program):f0.js"</tt> through <tt>"(program):f12.js"</tt>. The entries wer e named 57 <tt>"(program):f0.js"</tt> through <tt>"(program):f12.js"</tt>. The entries wer e named
58 via proper use of the <tt>//@sourceURL</tt> comment. There will also be entries 58 via proper use of the <tt>//#sourceURL</tt> comment. There will also be entries
59 named <tt>"(program)"</tt> for source that does not properly use, or use at all, 59 named <tt>"(program)"</tt> for source that does not properly use, or use at all,
60 the <tt>//@sourceURL</tt> comment. 60 the <tt>//#sourceURL</tt> comment.
61 61
62 <p>Now, set a breakpoint in the body of the <tt>"f0"</tt> function in the 62 <p>Now, set a breakpoint in the body of the <tt>"f0"</tt> function in the
63 <tt>"(program):f0.js"</tt> script. Then click this button: 63 <tt>"(program):f0.js"</tt> script. Then click this button:
64 64
65 <p><input type="button" value="run" onclick="funcs[0]()"> 65 <p><input type="button" value="run" onclick="funcs[0]()">
66 66
67 <p>When stopped at the breakpoint, the entry for the function in the 67 <p>When stopped at the breakpoint, the entry for the function in the
68 call stack control should the name of the script, <tt>"(program):f0.js"</tt>, 68 call stack control should the name of the script, <tt>"(program):f0.js"</tt>,
69 beside the function name <tt>"f0"</tt>. Note the function name for 69 beside the function name <tt>"f0"</tt>. Note the function name for
70 <tt>f0</tt> is set with the new <tt>"displayName"</tt> property. 70 <tt>f0</tt> is set with the new <tt>"displayName"</tt> property.
71 </body> 71 </body>
72 </html> 72 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698