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

Unified Diff: LayoutTests/inspector/debugger/debug-console-command.html

Issue 14294004: Implementing console command 'debug'. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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
« no previous file with comments | « no previous file | LayoutTests/inspector/debugger/debug-console-command-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/debugger/debug-console-command.html
diff --git a/LayoutTests/inspector/debugger/debug-console-command.html b/LayoutTests/inspector/debugger/debug-console-command.html
new file mode 100644
index 0000000000000000000000000000000000000000..e7dbb2b94d1221d9854a380614e3b41c274531b8
--- /dev/null
+++ b/LayoutTests/inspector/debugger/debug-console-command.html
@@ -0,0 +1,94 @@
+<html>
+<head>
+<script src="../../http/tests/inspector/inspector-test.js"></script>
+<script src="../../http/tests/inspector/debugger-test.js"></script>
+<script src="../../http/tests/inspector/console-test.js"></script>
+
+<script>
+function simpleTestFunction()
+{
+ return 0;
+}
+</script>
+
+<script>
+function simpleTestFunction1() { return 0; } function simpleTestFunction2() { return 0; }
+</script>
+
+<script>
+function simpleTestFunction3() { Math.random(); debugger; }
+</script>
+
+<script>
+var test = function()
+{
+ var currentSourceFrame;
+ InspectorTest.setQuiet(true);
+ InspectorTest.runDebuggerTestSuite([
+ function testSetSimpleBreakpoint(next)
+ {
+ setBreakpointAndRun(next, "simpleTestFunction", "simpleTestFunction();");
+ },
+
+ function testSetBreakpointOnFirstFunctionInLine(next)
+ {
+ setBreakpointAndRun(next, "simpleTestFunction1", "simpleTestFunction2(); simpleTestFunction1();");
+ },
+
+ function testSetBreakpointOnLastFunctionInLine(next)
+ {
+ setBreakpointAndRun(next, "simpleTestFunction2", "simpleTestFunction1(); simpleTestFunction2();");
+ },
+
+ function testRemoveBreakpoint(next)
+ {
+ InspectorTest.evaluateInConsole("debug(simpleTestFunction3); undebug(simpleTestFunction3);");
+ InspectorTest.evaluateInConsole("setTimeout(simpleTestFunction3, 0)");
+ InspectorTest.waitUntilPaused(didPause1);
+
+ function didPause1(callFrames, reason)
+ {
+ InspectorTest.addResult("Script execution paused.");
+ InspectorTest.addResult("Reason for pause: " + (reason == WebInspector.DebuggerModel.BreakReason.DebugCommand ? "debug command" : "debugger statement") + ".");
+ next();
+ }
+ }
+ ]);
+
+ function setBreakpointAndRun(next, functionName, runCmd)
+ {
+ InspectorTest.evaluateInConsole("debug(" + functionName + ")");
+
+ InspectorTest.addResult("Breakpoint added.");
+ InspectorTest.evaluateInConsole("setTimeout(function() { " + runCmd + " }, 0)");
+ InspectorTest.addResult("Set timer for test function.");
+ InspectorTest.waitUntilPaused(didPause);
+
+ function didPause(callFrames, reason)
+ {
+ InspectorTest.addResult("Script execution paused.");
+ InspectorTest.captureStackTrace(callFrames);
+ InspectorTest.evaluateInConsole("undebug(" + functionName + ")");
+ InspectorTest.addResult("Breakpoint removed.");
+ InspectorTest.assertEquals(reason, WebInspector.DebuggerModel.BreakReason.DebugCommand);
+ InspectorTest.resumeExecution(didResume);
+ }
+
+ function didResume()
+ {
+ InspectorTest.addResult("Script execution resumed.");
+ next();
+ }
+ }
+}
+
+</script>
+</head>
+
+<body onload="runTest()">
+<p>
+Tests debug(fn) console command.
+</p>
+
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/inspector/debugger/debug-console-command-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698