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

Unified Diff: LayoutTests/inspector/sources/debugger/pause-in-internal-script.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/pause-in-internal-script.html
diff --git a/LayoutTests/inspector/sources/debugger/pause-in-internal-script.html b/LayoutTests/inspector/sources/debugger/pause-in-internal-script.html
deleted file mode 100644
index 1a6d916629c40ce8b9ca54b6345a12bd68181e0c..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/sources/debugger/pause-in-internal-script.html
+++ /dev/null
@@ -1,56 +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()
-{
- var array = [2, 5, 7];
- var sum = 0;
- array.forEach(function(key)
- {
- sum += array[key];
- });
- return sum;
-}
-
-function test()
-{
- InspectorTest.runDebuggerTestSuite([
- function testSetBreakpoint(next)
- {
- InspectorTest.showScriptSource("pause-in-internal-script.html", didShowScriptSource);
-
- var breakpointFunctionFrame = null;
-
- function didShowScriptSource(sourceFrame)
- {
- breakpointFunctionFrame = sourceFrame;
- InspectorTest.addResult("Script source was shown.");
- InspectorTest.setBreakpoint(sourceFrame, 13, "", true);
- InspectorTest.runTestFunctionAndWaitUntilPaused(didPause);
- }
-
- function didPause(callFrames)
- {
- InspectorTest.captureStackTrace(callFrames);
- InspectorTest.removeBreakpoint(breakpointFunctionFrame, 13);
- next();
- }
- }
- ]);
-};
-
-</script>
-
-</head>
-
-<body onload="runTest()">
-<p>Tests that internal scripts unknown to front-end are processed correctly when appear in debugger call frames.
-<a href="https://bugs.webkit.org/show_bug.cgi?id=64995">Bug 64995</a>
-</p>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698