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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-activation-crash.html

Issue 1550823002: [DevTools] Removed obsolete JSC regression tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-activation-crash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-activation-crash.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-activation-crash.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-activation-crash.html
deleted file mode 100644
index 1be6ee9b4d572e19cf70fa07fcf83b5302ccd426..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-activation-crash.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/debugger-test.js"></script>
-
-<script>
-var closures = [];
-function makeClosure() {
- var v1, v2, v3, v4, v5, v6, v7, v8, v9, v10; // Make a lot of potentially captured variables.
- return function (){ return v1; }; // But only capture one in optimizing compiles.
-}
-
-for (var i = 0; i < 100; ++i) {
- closures.push(makeClosure());
-}
-
-function tryCrash() {
- makeClosure(); // Force recompilation.
-
- // At this point, we should have 100 activations that captured 1 variable
- // but think they captured 10. If so, GC should make them crash.
- if (window.GCController)
- GCController.collect();
- else {
- for (var i = 0; i < 10000; ++i)
- new Object;
- }
-}
-
-function test() {
- InspectorTest.startDebuggerTest(function () {
- InspectorTest.evaluateInPage("tryCrash()");
- InspectorTest.completeDebuggerTest();
- });
-}
-
-window.onload = runTest;
-</script>
-
-<p>
-Tests for a crash caused by inaccurate Activation records.
-&lt;rdar://problem/8525907&gt; Crash in debugger beneath MarkStack::drain @ me.com, ibm.com
-</p>
-
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-activation-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698