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

Side by Side Diff: third_party/WebKit/ManualTests/inspector/remember-last-script.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=27552">Bug 27552 </a> - remember last script displayed in Scripts panel</b> 2 <p><b>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=27552">Bug 27552 </a> - remember last script displayed in Scripts panel</b>
3 3
4 <ul> 4 <ul>
5 <li><p>open this page with Web Inspector, switch to the <b>Scripts</b> panel, en abling debug if required 5 <li><p>open this page with Web Inspector, switch to the <b>Scripts</b> panel, en abling debug if required
6 <li><p>the available scripts in the select element should be: 6 <li><p>the available scripts in the select element should be:
7 <ul> 7 <ul>
8 <li><b>(program): f1.js</b> 8 <li><b>(program): f1.js</b>
9 <li><b>remember-last-script.html</b> 9 <li><b>remember-last-script.html</b>
10 </ul> 10 </ul>
11 <li><p>select <b>(program): f1.js</b> so the source is available 11 <li><p>select <b>(program): f1.js</b> so the source is available
12 <li><p>switch to the <b>Resources</b> panel 12 <li><p>switch to the <b>Resources</b> panel
13 <li><p>close Web Inspector 13 <li><p>close Web Inspector
14 <li><p>Repeat the following several times. Each time, <b>(program): f1.js</b> 14 <li><p>Repeat the following several times. Each time, <b>(program): f1.js</b>
15 should be the selected script: 15 should be the selected script:
16 <ul> 16 <ul>
17 <li>open Web Inspector, switch to the <b>Scripts</b> panel, then close Web I nspector 17 <li>open Web Inspector, switch to the <b>Scripts</b> panel, then close Web I nspector
18 </ul> 18 </ul>
19 <li><p>open Web Inspector, switch to the <b>Scripts</b> panel 19 <li><p>open Web Inspector, switch to the <b>Scripts</b> panel
20 <li><p>select <b>remember-last-script.html</b> so the source is available 20 <li><p>select <b>remember-last-script.html</b> so the source is available
21 <li><p>Repeat the following several times. Each time, <b>remember-last-script.h tml</b> 21 <li><p>Repeat the following several times. Each time, <b>remember-last-script.h tml</b>
22 should be the selected script: 22 should be the selected script:
23 <ul> 23 <ul>
24 <li>open Web Inspector, switch to the <b>Scripts</b> panel, then close Web I nspector 24 <li>open Web Inspector, switch to the <b>Scripts</b> panel, then close Web I nspector
25 </ul> 25 </ul>
26 </ul> 26 </ul>
27 27
28 <script> 28 <script>
29 29
30 f1 = Function([ 30 f1 = Function([
31 "", 31 "",
32 " doNothing();", 32 " doNothing();",
33 "//@sourceURL=f1.js" 33 "//# sourceURL=f1.js"
34 ].join("\n")); 34 ].join("\n"));
35 35
36 function doNothing() { /* allows multi-line functions, easier to debug */ }; 36 function doNothing() { /* allows multi-line functions, easier to debug */ };
37 37
38 doNothing(); 38 doNothing();
39 f1(); 39 f1();
40 40
41 </script> 41 </script>
42 <!-- End --> 42 <!-- End -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698