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

Side by Side Diff: third_party/WebKit/ManualTests/inspector/bp-in-named-eval-after-reload.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 <style>code{background-color: #ffc;}</style> 1 <style>code{background-color: #ffc;}</style>
2 <p><b>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=31375">Bug 31375 </a> - Web Inspector: breakpoints in named evals are not restored after a reload </b> 2 <p><b>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=31375">Bug 31375 </a> - Web Inspector: breakpoints in named evals are not restored after a reload </b>
3 3
4 <ul> 4 <ul>
5 <li><p>open this page with Web Inspector 5 <li><p>open this page with Web Inspector
6 <li><p>switch to the Scripts panel, enabling debug if required 6 <li><p>switch to the Scripts panel, enabling debug if required
7 <li><p>the available scripts in the select element should be: 7 <li><p>the available scripts in the select element should be:
8 <ul> 8 <ul>
9 <li>(program): f1.js 9 <li>(program): f1.js
10 <li>(program): f2.js 10 <li>(program): f2.js
(...skipping 24 matching lines...) Expand all
35 35
36 <script> 36 <script>
37 37
38 function doNothing() { /* allows multi-line functions, easier to debug */ }; 38 function doNothing() { /* allows multi-line functions, easier to debug */ };
39 39
40 eval([ 40 eval([
41 "function f1() {", 41 "function f1() {",
42 " doNothing();", 42 " doNothing();",
43 " console.log(new Date() + ': f1() called');", 43 " console.log(new Date() + ': f1() called');",
44 "}", 44 "}",
45 "//@sourceURL=f1.js" 45 "//# sourceURL=f1.js"
46 ].join("\n")); 46 ].join("\n"));
47 47
48 f2 = Function([ 48 f2 = Function([
49 "", 49 "",
50 " doNothing();", 50 " doNothing();",
51 " console.log(new Date() + ': f2() called');", 51 " console.log(new Date() + ': f2() called');",
52 "//@sourceURL=f2.js" 52 "//# sourceURL=f2.js"
53 ].join("\n")); 53 ].join("\n"));
54 54
55 var button = document.getElementById("button"); 55 var button = document.getElementById("button");
56 56
57 button.addEventListener("click", clickHandler, false); 57 button.addEventListener("click", clickHandler, false);
58 58
59 function clickHandler() { 59 function clickHandler() {
60 f1(); 60 f1();
61 f2(); 61 f2();
62 } 62 }
63 63
64 </script> 64 </script>
65 <!-- End --> 65 <!-- End -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698