Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/unformatted-async.js |
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/unformatted-async.js b/third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/unformatted-async.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4ce0f0186e61606e1450ae662e33211e440de959 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/resources/unformatted-async.js |
| @@ -0,0 +1,10 @@ |
| +function f2() |
| +{ |
| + var a=0;var b=1;var c=3;var d=4;var e=5; |
| + var f=0;setTimeout(f3, 0); |
| +} |
| + |
| +function f3() |
| +{ |
| + debugger; |
| +} |