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

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

Issue 2885203006: [DevTools] inline modules should have correct text offset (Closed)
Patch Set: a Created 3 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/ScriptModule.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
11 11
12 <script> 12 <script type="module">
13 function f3() 13 function f3()
14 { 14 {
15 return f2(); 15 return f2();
16 } 16 }
17 f3(); 17 f3();
18 </script> 18 </script>
19 19
20 <script src="../../../http/tests/inspector/inspector-test.js"></script> 20 <script src="../../../http/tests/inspector/inspector-test.js"></script>
21 <script src="../../../http/tests/inspector/debugger-test.js"></script> 21 <script src="../../../http/tests/inspector/debugger-test.js"></script>
22 22
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 </head> 88 </head>
89 89
90 <body onload="runTest()"> 90 <body onload="runTest()">
91 <p> 91 <p>
92 Tests that main resource script text is correct when paused in inline script on reload. 92 Tests that main resource script text is correct when paused in inline script on reload.
93 <a href="https://bugs.webkit.org/show_bug.cgi?id=77548">Bug 77548.</a> 93 <a href="https://bugs.webkit.org/show_bug.cgi?id=77548">Bug 77548.</a>
94 </p> 94 </p>
95 95
96 </body> 96 </body>
97 </html> 97 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/ScriptModule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698