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

Unified Diff: Source/WebCore/inspector/front-end/ScriptsPanel.js

Issue 7708013: Merge 93042 - Web Inspector: [V8] crash upon stepIn while not on pause. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/835/
Patch Set: Created 9 years, 4 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 | « Source/WebCore/inspector/InspectorDebuggerAgent.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/inspector/front-end/ScriptsPanel.js
===================================================================
--- Source/WebCore/inspector/front-end/ScriptsPanel.js (revision 93524)
+++ Source/WebCore/inspector/front-end/ScriptsPanel.js (working copy)
@@ -885,6 +885,9 @@
_stepOverClicked: function()
{
+ if (!this._paused)
+ return;
+
this._paused = false;
this._stepping = true;
@@ -895,6 +898,9 @@
_stepIntoClicked: function()
{
+ if (!this._paused)
+ return;
+
this._paused = false;
this._stepping = true;
@@ -905,6 +911,9 @@
_stepOutClicked: function()
{
+ if (!this._paused)
+ return;
+
this._paused = false;
this._stepping = true;
« no previous file with comments | « Source/WebCore/inspector/InspectorDebuggerAgent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698