diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2009-03-03 18:28:41 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-03-03 18:28:41 -0800 |
commit | 648161bb0edfc3d43db63caed5cc5213bc6cb78f (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /WebCore/manual-tests/inspector/debugger-pause-on-for-in-statements.html | |
parent | a65af38181ac7d34544586bdb5cd004de93897ad (diff) | |
download | external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.zip external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.gz external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.bz2 |
auto import from //depot/cupcake/@135843
Diffstat (limited to 'WebCore/manual-tests/inspector/debugger-pause-on-for-in-statements.html')
-rw-r--r-- | WebCore/manual-tests/inspector/debugger-pause-on-for-in-statements.html | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/WebCore/manual-tests/inspector/debugger-pause-on-for-in-statements.html b/WebCore/manual-tests/inspector/debugger-pause-on-for-in-statements.html deleted file mode 100644 index c0c24e0..0000000 --- a/WebCore/manual-tests/inspector/debugger-pause-on-for-in-statements.html +++ /dev/null @@ -1,18 +0,0 @@ -<script> -function test() -{ - debugger; -} - -var object = { test: 1 }; - -for (var property in object) - test(); -</script> - -Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=22004">Bug 22004: Can't set a breakpoint on the statement after a single line "for"</a>. -<br><br> -Start a debugging session in the Web Inspector and open this file. When the debugger breaks, select the (program) node -in the call stack, you should see the execution line on the call to test(). -<br><br> -Also set a breakpoint on the call to test(), and reload. It should break before the test() function is called. |