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

Unified Diff: LayoutTests/inspector/sources/debugger/pause-in-inline-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-inline-script.html
diff --git a/LayoutTests/inspector/sources/debugger/pause-in-inline-script.html b/LayoutTests/inspector/sources/debugger/pause-in-inline-script.html
deleted file mode 100644
index a890f6e81b6b8bd06788b35e1fcaffdfb503f3ac..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/sources/debugger/pause-in-inline-script.html
+++ /dev/null
@@ -1,97 +0,0 @@
-<html>
-<head>
-<script>function foo() { };
-</script>
-<script>
-function bar() { };
-</script><script>function f1() { debugger; }</script>
-<script>
-function f2() { return f1(); }
-</script>
-
-<script>
-function f3()
-{
- return f2();
-}
-f3();
-</script>
-
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/debugger-test.js"></script>
-
-<script>
-
-var test = function()
-{
- var testName = InspectorTest.resourceTreeModel.inspectedPageURL();
- testName = testName.substring(testName.lastIndexOf('/') + 1);
-
- InspectorTest.startDebuggerTest(step1);
-
- function step1()
- {
- InspectorTest.addResult("Did load front-end");
- InspectorTest.addResult("Paused: " + !!InspectorTest.debuggerModel.debuggerPausedDetails());
- InspectorTest.reloadPage(didReload.bind(this));
- InspectorTest.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerPaused, didPauseAfterReload, this);
- }
-
- function didReload()
- {
- InspectorTest.addResult("didReload");
- InspectorTest.completeDebuggerTest();
- }
-
- function didPauseAfterReload(details)
- {
- InspectorTest.addResult("didPauseAfterReload");
- InspectorTest.addResult("Source strings corresponding to the call stack:");
- dumpNextCallFrame(didDump);
- }
-
- var callFrameIndex = 0;
- function dumpNextCallFrame(next)
- {
- var callFrames = InspectorTest.debuggerModel.callFrames;
- if (callFrameIndex === callFrames.length) {
- next();
- return;
- }
- var frame = callFrames[callFrameIndex];
- var uiLocation = WebInspector.debuggerWorkspaceBinding.rawLocationToUILocation(frame.location());
- InspectorTest.showUISourceCode(uiLocation.uiSourceCode, dumpCallFrameLine);
-
- function dumpCallFrameLine(sourceFrame)
- {
- var resourceText = sourceFrame._textEditor.text();
- var lines = resourceText.split("\n");
- var lineNumber = uiLocation.lineNumber;
- InspectorTest.addResult("Frame " + callFrameIndex + ") line " + lineNumber + ", content: " + lines[lineNumber] + " (must be part of function '" + frame.functionName + "')");
- callFrameIndex++
- dumpNextCallFrame(next);
- }
- }
-
- function didDump()
- {
- InspectorTest.resumeExecution(didResume);
- }
-
- function didResume()
- {
- InspectorTest.addResult("didResume");
- }
-};
-</script>
-
-</head>
-
-<body onload="runTest()">
-<p>
-Tests that main resource script text is correct when paused in inline script on reload.
-<a href="https://bugs.webkit.org/show_bug.cgi?id=77548">Bug 77548.</a>
-</p>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698