Home | History | Annotate | Download | only in front_end

Lines Matching refs:breakpoint

123                     message = "Paused on a \"%s\" breakpoint set on %s, because a new child was added to its descendant %s.";
126 message = "Paused on a \"%s\" breakpoint set on %s, because a new child was added to that node.";
128 message = "Paused on a \"%s\" breakpoint set on %s, because its descendant %s was removed.";
132 message = "Paused on a \"%s\" breakpoint set on %s.";
246 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Remove breakpoint" : "Remove Breakpoint"), removeBreakpoint.bind(this));
267 element.addStyleClass("breakpoint-hit");
274 this._highlightedElement.removeStyleClass("breakpoint-hit");
289 var breakpoint = storedBreakpoints[i];
290 if (breakpoint.url !== this._inspectedURL)
291 breakpoints.push(breakpoint);
321 var breakpoint = breakpoints[i];
322 if (breakpoint.url !== this._inspectedURL)
324 var path = breakpoint.path;
329 pathToBreakpoints[path].push(breakpoint);