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

Side by Side Diff: LayoutTests/inspector/debugger/pause-in-inline-script.html

Issue 9371015: Merge 106468 - Web Inspector: debugger reports wrong sources when paused in inline script on page... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 10 months 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>function foo() { }; 3 <script>function foo() { };
4 </script> 4 </script>
5 <script> 5 <script>
6 function bar() { }; 6 function bar() { };
7 </script><script>function f1() { debugger; }</script> 7 </script><script>function f1() { debugger; }</script>
8 <script> 8 <script>
9 function f2() { return f1(); } 9 function f2() { return f1(); }
10 </script> 10 </script>
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 </head> 80 </head>
81 81
82 <body onload="runTest()"> 82 <body onload="runTest()">
83 <p> 83 <p>
84 Tests that main resource script text is correct when paused in inline script on reload. 84 Tests that main resource script text is correct when paused in inline script on reload.
85 <a href="https://bugs.webkit.org/show_bug.cgi?id=77548">Bug 77548.</a> 85 <a href="https://bugs.webkit.org/show_bug.cgi?id=77548">Bug 77548.</a>
86 </p> 86 </p>
87 87
88 </body> 88 </body>
89 </html> 89 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698