Home | History | Annotate | Download | only in inspector
      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>
      3 
      4 <ul>
      5 <li><p>open this page with Web Inspector, switch to the <b>Scripts</b> panel, enabling debug if required
      6 <li><p>the available scripts in the select element should be:
      7     <ul>
      8         <li><b>(program): f1.js</b>
      9         <li><b>remember-last-script.html</b>
     10     </ul>
     11 <li><p>select <b>(program): f1.js</b> so the source is available
     12 <li><p>switch to the <b>Resources</b> panel
     13 <li><p>close Web Inspector
     14 <li><p>Repeat the following several times.  Each time, <b>(program): f1.js</b>
     15 should be the selected script:
     16     <ul>
     17     <li>open Web Inspector, switch to the <b>Scripts</b> panel, then close Web Inspector
     18     </ul>
     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
     21 <li><p>Repeat the following several times.  Each time, <b>remember-last-script.html</b>
     22 should be the selected script:
     23     <ul>
     24     <li>open Web Inspector, switch to the <b>Scripts</b> panel, then close Web Inspector
     25     </ul>
     26 </ul>    
     27 
     28 <script>
     29 
     30 f1 = Function([
     31     "",
     32     "   doNothing();",
     33     "//@sourceURL=f1.js"
     34 ].join("\n"));
     35 
     36 function doNothing() { /* allows multi-line functions, easier to debug */ };
     37 
     38 doNothing();
     39 f1();
     40 
     41 </script>
     42 <!-- End -->
     43