| Index: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| index 64265cfaaeec2c4aa4025404cd1e6eb7018d04c0..74143971a6e4eec07dada63b194d519190ff5263 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
|
| @@ -1118,6 +1118,9 @@ WebInspector.JavaScriptSourceFrame.prototype = {
|
| */
|
| _setBreakpoint: function(lineNumber, columnNumber, condition, enabled)
|
| {
|
| + if (!WebInspector.debuggerWorkspaceBinding.uiLineHasMapping(this.uiSourceCode(), lineNumber))
|
| + return;
|
| +
|
| this._breakpointManager.setBreakpoint(this.uiSourceCode(), lineNumber, columnNumber, condition, enabled);
|
| },
|
|
|
|
|