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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-await/async-callstack-async-await3.html

Issue 2214063002: [LayoutTests] Split up async-callstack-async-await* tests to mitigate timeouts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 src="../../../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../../../http/tests/inspector/debugger-test.js"></script> 4 <script src="../../../../http/tests/inspector/debugger-test.js"></script>
5 <script> 5 <script>
6 6
7 function timeoutPromise(value, ms) 7 function timeoutPromise(value, ms)
8 { 8 {
9 return new Promise(function promiseCallback(resolve, reject) { 9 return new Promise(function promiseCallback(resolve, reject) {
10 function resolvePromise() 10 function resolvePromise()
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 </script> 140 </script>
141 </head> 141 </head>
142 142
143 <body onload="runTest()"> 143 <body onload="runTest()">
144 <p> 144 <p>
145 Tests asynchronous call stacks for async functions. 145 Tests asynchronous call stacks for async functions.
146 </p> 146 </p>
147 147
148 </body> 148 </body>
149 </html> 149 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698