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

Unified Diff: LayoutTests/inspector/sources/debugger/async-callstack-reload-no-crash.html

Issue 1153923005: DevTools: shard inspector/debugger tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/inspector/sources/debugger/async-callstack-reload-no-crash.html
diff --git a/LayoutTests/inspector/sources/debugger/async-callstack-reload-no-crash.html b/LayoutTests/inspector/sources/debugger/async-callstack-reload-no-crash.html
deleted file mode 100644
index 16068a07da8c6edac399900b2e5eb26fbbca331d..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/sources/debugger/async-callstack-reload-no-crash.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<html>
-<head>
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/debugger-test.js"></script>
-<script>
-
-function testFunction()
-{
- setInterval(callback, 0);
- debugger;
-}
-
-function callback()
-{
- return window.__foo;
-}
-
-function test()
-{
- var maxAsyncCallStackDepth = 4;
- InspectorTest.startDebuggerTest(step1, true);
-
- function step1()
- {
- InspectorTest.DebuggerAgent.setAsyncCallStackDepth(maxAsyncCallStackDepth, step2);
- }
-
- function step2()
- {
- InspectorTest.runTestFunctionAndWaitUntilPaused(didPause);
- }
-
- function didPause()
- {
- InspectorTest.addResult("Reloading the page...");
- InspectorTest.reloadPage(afterReload);
- }
-
- function afterReload()
- {
- InspectorTest.addResult("PASS: Reloaded successfully.");
- InspectorTest.completeDebuggerTest();
- }
-}
-
-</script>
-</head>
-<body onload="runTest()">
-<p>
-Tests that page reload with async stacks turned on does not crash.
-<a href="https://code.google.com/p/chromium/issues/detail?id=441223">Bug 441223.</a>
-</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698