| Index: Source/devtools/front_end/sources/BreakpointsSidebarPane.js
|
| diff --git a/Source/devtools/front_end/sources/BreakpointsSidebarPane.js b/Source/devtools/front_end/sources/BreakpointsSidebarPane.js
|
| deleted file mode 100644
|
| index 8673654da0f4a0a71481187bd94265aa7b59f0c2..0000000000000000000000000000000000000000
|
| --- a/Source/devtools/front_end/sources/BreakpointsSidebarPane.js
|
| +++ /dev/null
|
| @@ -1,871 +0,0 @@
|
| -/*
|
| - * Copyright (C) 2008 Apple Inc. All Rights Reserved.
|
| - *
|
| - * Redistribution and use in source and binary forms, with or without
|
| - * modification, are permitted provided that the following conditions
|
| - * are met:
|
| - * 1. Redistributions of source code must retain the above copyright
|
| - * notice, this list of conditions and the following disclaimer.
|
| - * 2. Redistributions in binary form must reproduce the above copyright
|
| - * notice, this list of conditions and the following disclaimer in the
|
| - * documentation and/or other materials provided with the distribution.
|
| - *
|
| - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
|
| - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
| - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
| - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
|
| - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
| - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
| - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
| - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
| - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| - */
|
| -
|
| -/**
|
| - * @constructor
|
| - * @extends {WebInspector.SidebarPane}
|
| - * @param {!WebInspector.BreakpointManager} breakpointManager
|
| - * @param {function(!WebInspector.UISourceCode, number=, number=, boolean=)} showSourceLineDelegate
|
| - */
|
| -WebInspector.JavaScriptBreakpointsSidebarPane = function(breakpointManager, showSourceLineDelegate)
|
| -{
|
| - WebInspector.SidebarPane.call(this, WebInspector.UIString("Breakpoints"));
|
| - this.registerRequiredCSS("components/breakpointsList.css");
|
| -
|
| - this._breakpointManager = breakpointManager;
|
| - this._showSourceLineDelegate = showSourceLineDelegate;
|
| -
|
| - this.listElement = createElementWithClass("ol", "breakpoint-list");
|
| -
|
| - this.emptyElement = this.bodyElement.createChild("div", "info");
|
| - this.emptyElement.textContent = WebInspector.UIString("No Breakpoints");
|
| -
|
| - this._items = new Map();
|
| -
|
| - var breakpointLocations = this._breakpointManager.allBreakpointLocations();
|
| - for (var i = 0; i < breakpointLocations.length; ++i)
|
| - this._addBreakpoint(breakpointLocations[i].breakpoint, breakpointLocations[i].uiLocation);
|
| -
|
| - this._breakpointManager.addEventListener(WebInspector.BreakpointManager.Events.BreakpointAdded, this._breakpointAdded, this);
|
| - this._breakpointManager.addEventListener(WebInspector.BreakpointManager.Events.BreakpointRemoved, this._breakpointRemoved, this);
|
| -
|
| - this.emptyElement.addEventListener("contextmenu", this._emptyElementContextMenu.bind(this), true);
|
| -}
|
| -
|
| -WebInspector.JavaScriptBreakpointsSidebarPane.prototype = {
|
| - _emptyElementContextMenu: function(event)
|
| - {
|
| - var contextMenu = new WebInspector.ContextMenu(event);
|
| - this._appendBreakpointActiveItem(contextMenu);
|
| - contextMenu.show();
|
| - },
|
| -
|
| - /**
|
| - * @param {!WebInspector.ContextMenu} contextMenu
|
| - */
|
| - _appendBreakpointActiveItem: function(contextMenu)
|
| - {
|
| - var breakpointActive = this._breakpointManager.breakpointsActive();
|
| - var breakpointActiveTitle = breakpointActive ?
|
| - WebInspector.UIString.capitalize("Deactivate ^breakpoints") :
|
| - WebInspector.UIString.capitalize("Activate ^breakpoints");
|
| - contextMenu.appendItem(breakpointActiveTitle, this._breakpointManager.setBreakpointsActive.bind(this._breakpointManager, !breakpointActive));
|
| - },
|
| -
|
| - /**
|
| - * @param {!WebInspector.Event} event
|
| - */
|
| - _breakpointAdded: function(event)
|
| - {
|
| - this._breakpointRemoved(event);
|
| -
|
| - var breakpoint = /** @type {!WebInspector.BreakpointManager.Breakpoint} */ (event.data.breakpoint);
|
| - var uiLocation = /** @type {!WebInspector.UILocation} */ (event.data.uiLocation);
|
| - this._addBreakpoint(breakpoint, uiLocation);
|
| - },
|
| -
|
| - /**
|
| - * @param {!WebInspector.BreakpointManager.Breakpoint} breakpoint
|
| - * @param {!WebInspector.UILocation} uiLocation
|
| - */
|
| - _addBreakpoint: function(breakpoint, uiLocation)
|
| - {
|
| - var element = createElementWithClass("li", "cursor-pointer");
|
| - element.addEventListener("contextmenu", this._breakpointContextMenu.bind(this, breakpoint), true);
|
| - element.addEventListener("click", this._breakpointClicked.bind(this, uiLocation), false);
|
| -
|
| - var checkbox = element.createChild("input", "checkbox-elem");
|
| - checkbox.type = "checkbox";
|
| - checkbox.checked = breakpoint.enabled();
|
| - checkbox.addEventListener("click", this._breakpointCheckboxClicked.bind(this, breakpoint), false);
|
| -
|
| - element.createTextChild(uiLocation.linkText());
|
| -
|
| - var snippetElement = element.createChild("div", "source-text monospace");
|
| -
|
| - /**
|
| - * @param {?string} content
|
| - */
|
| - function didRequestContent(content)
|
| - {
|
| - var lineNumber = uiLocation.lineNumber
|
| - var columnNumber = uiLocation.columnNumber;
|
| - var contentString = new String(content);
|
| - if (lineNumber < contentString.lineCount()) {
|
| - var lineText = contentString.lineAt(lineNumber);
|
| - var maxSnippetLength = 200;
|
| - var snippetStartIndex = columnNumber > 100 ? columnNumber : 0;
|
| - snippetElement.textContent = lineText.substr(snippetStartIndex).trimEnd(maxSnippetLength);
|
| - }
|
| - }
|
| -
|
| - uiLocation.uiSourceCode.requestContent(didRequestContent);
|
| -
|
| - element._data = uiLocation;
|
| - var currentElement = this.listElement.firstChild;
|
| - while (currentElement) {
|
| - if (currentElement._data && this._compareBreakpoints(currentElement._data, element._data) > 0)
|
| - break;
|
| - currentElement = currentElement.nextSibling;
|
| - }
|
| - this._addListElement(element, currentElement);
|
| -
|
| - var breakpointItem = { element: element, checkbox: checkbox };
|
| - this._items.set(breakpoint, breakpointItem);
|
| -
|
| - this.expand();
|
| - },
|
| -
|
| - /**
|
| - * @param {!WebInspector.Event} event
|
| - */
|
| - _breakpointRemoved: function(event)
|
| - {
|
| - var breakpoint = /** @type {!WebInspector.BreakpointManager.Breakpoint} */ (event.data.breakpoint);
|
| - var breakpointItem = this._items.get(breakpoint);
|
| - if (!breakpointItem)
|
| - return;
|
| - this._items.remove(breakpoint);
|
| - this._removeListElement(breakpointItem.element);
|
| - },
|
| -
|
| - /**
|
| - * @param {!WebInspector.BreakpointManager.Breakpoint} breakpoint
|
| - */
|
| - highlightBreakpoint: function(breakpoint)
|
| - {
|
| - var breakpointItem = this._items.get(breakpoint);
|
| - if (!breakpointItem)
|
| - return;
|
| - breakpointItem.element.classList.add("breakpoint-hit");
|
| - this._highlightedBreakpointItem = breakpointItem;
|
| - },
|
| -
|
| - clearBreakpointHighlight: function()
|
| - {
|
| - if (this._highlightedBreakpointItem) {
|
| - this._highlightedBreakpointItem.element.classList.remove("breakpoint-hit");
|
| - delete this._highlightedBreakpointItem;
|
| - }
|
| - },
|
| -
|
| - _breakpointClicked: function(uiLocation, event)
|
| - {
|
| - this._showSourceLineDelegate(uiLocation.uiSourceCode, uiLocation.lineNumber);
|
| - },
|
| -
|
| - /**
|
| - * @param {!WebInspector.BreakpointManager.Breakpoint} breakpoint
|
| - * @param {!Event} event
|
| - */
|
| - _breakpointCheckboxClicked: function(breakpoint, event)
|
| - {
|
| - // Breakpoint element has it's own click handler.
|
| - event.consume();
|
| - breakpoint.setEnabled(event.target.checked);
|
| - },
|
| -
|
| - /**
|
| - * @param {!WebInspector.BreakpointManager.Breakpoint} breakpoint
|
| - * @param {!Event} event
|
| - */
|
| - _breakpointContextMenu: function(breakpoint, event)
|
| - {
|
| - var breakpoints = this._items.valuesArray();
|
| - var contextMenu = new WebInspector.ContextMenu(event);
|
| - contextMenu.appendItem(WebInspector.UIString.capitalize("Remove ^breakpoint"), breakpoint.remove.bind(breakpoint));
|
| - if (breakpoints.length > 1) {
|
| - var removeAllTitle = WebInspector.UIString.capitalize("Remove ^all ^breakpoints");
|
| - contextMenu.appendItem(removeAllTitle, this._breakpointManager.removeAllBreakpoints.bind(this._breakpointManager));
|
| - }
|
| -
|
| - contextMenu.appendSeparator();
|
| - this._appendBreakpointActiveItem(contextMenu);
|
| -
|
| - function enabledBreakpointCount(breakpoints)
|
| - {
|
| - var count = 0;
|
| - for (var i = 0; i < breakpoints.length; ++i) {
|
| - if (breakpoints[i].checkbox.checked)
|
| - count++;
|
| - }
|
| - return count;
|
| - }
|
| - if (breakpoints.length > 1) {
|
| - var enableBreakpointCount = enabledBreakpointCount(breakpoints);
|
| - var enableTitle = WebInspector.UIString.capitalize("Enable ^all ^breakpoints");
|
| - var disableTitle = WebInspector.UIString.capitalize("Disable ^all ^breakpoints");
|
| -
|
| - contextMenu.appendSeparator();
|
| -
|
| - contextMenu.appendItem(enableTitle, this._breakpointManager.toggleAllBreakpoints.bind(this._breakpointManager, true), !(enableBreakpointCount != breakpoints.length));
|
| - contextMenu.appendItem(disableTitle, this._breakpointManager.toggleAllBreakpoints.bind(this._breakpointManager, false), !(enableBreakpointCount > 1));
|
| - }
|
| -
|
| - contextMenu.show();
|
| - },
|
| -
|
| - _addListElement: function(element, beforeElement)
|
| - {
|
| - if (beforeElement)
|
| - this.listElement.insertBefore(element, beforeElement);
|
| - else {
|
| - if (!this.listElement.firstChild) {
|
| - this.bodyElement.removeChild(this.emptyElement);
|
| - this.bodyElement.appendChild(this.listElement);
|
| - }
|
| - this.listElement.appendChild(element);
|
| - }
|
| - },
|
| -
|
| - _removeListElement: function(element)
|
| - {
|
| - this.listElement.removeChild(element);
|
| - if (!this.listElement.firstChild) {
|
| - this.bodyElement.removeChild(this.listElement);
|
| - this.bodyElement.appendChild(this.emptyElement);
|
| - }
|
| - },
|
| -
|
| - _compare: function(x, y)
|
| - {
|
| - if (x !== y)
|
| - return x < y ? -1 : 1;
|
| - return 0;
|
| - },
|
| -
|
| - _compareBreakpoints: function(b1, b2)
|
| - {
|
| - return this._compare(b1.uiSourceCode.originURL(), b2.uiSourceCode.originURL()) || this._compare(b1.lineNumber, b2.lineNumber);
|
| - },
|
| -
|
| - reset: function()
|
| - {
|
| - this.listElement.removeChildren();
|
| - if (this.listElement.parentElement) {
|
| - this.bodyElement.removeChild(this.listElement);
|
| - this.bodyElement.appendChild(this.emptyElement);
|
| - }
|
| - this._items.clear();
|
| - },
|
| -
|
| - __proto__: WebInspector.SidebarPane.prototype
|
| -}
|
| -
|
| -/**
|
| - * @constructor
|
| - * @extends {WebInspector.NativeBreakpointsSidebarPane}
|
| - * @implements {WebInspector.TargetManager.Observer}
|
| - */
|
| -WebInspector.XHRBreakpointsSidebarPane = function()
|
| -{
|
| - WebInspector.NativeBreakpointsSidebarPane.call(this, WebInspector.UIString("XHR Breakpoints"));
|
| -
|
| - /** @type {!Map.<string, !Element>} */
|
| - this._breakpointElements = new Map();
|
| -
|
| - var addButton = this.titleElement.createChild("button", "pane-title-button add");
|
| - addButton.title = WebInspector.UIString("Add XHR breakpoint");
|
| - addButton.addEventListener("click", this._addButtonClicked.bind(this), false);
|
| -
|
| - this.emptyElement.addEventListener("contextmenu", this._emptyElementContextMenu.bind(this), true);
|
| -
|
| - WebInspector.targetManager.observeTargets(this);
|
| -}
|
| -
|
| -WebInspector.XHRBreakpointsSidebarPane.prototype = {
|
| - /**
|
| - * @override
|
| - * @param {!WebInspector.Target} target
|
| - */
|
| - targetAdded: function(target)
|
| - {
|
| - this._restoreBreakpoints(target);
|
| - },
|
| -
|
| - /**
|
| - * @override
|
| - * @param {!WebInspector.Target} target
|
| - */
|
| - targetRemoved: function(target) { },
|
| -
|
| - _emptyElementContextMenu: function(event)
|
| - {
|
| - var contextMenu = new WebInspector.ContextMenu(event);
|
| - contextMenu.appendItem(WebInspector.UIString.capitalize("Add ^breakpoint"), this._addButtonClicked.bind(this));
|
| - contextMenu.show();
|
| - },
|
| -
|
| - _addButtonClicked: function(event)
|
| - {
|
| - if (event)
|
| - event.consume();
|
| -
|
| - this.expand();
|
| -
|
| - var inputElementContainer = createElementWithClass("p", "breakpoint-condition");
|
| - inputElementContainer.textContent = WebInspector.UIString("Break when URL contains:");
|
| -
|
| - var inputElement = inputElementContainer.createChild("span", "editing");
|
| - inputElement.id = "breakpoint-condition-input";
|
| - this.addListElement(inputElementContainer, /** @type {?Element} */ (this.listElement.firstChild));
|
| -
|
| - /**
|
| - * @param {boolean} accept
|
| - * @param {!Element} e
|
| - * @param {string} text
|
| - * @this {WebInspector.XHRBreakpointsSidebarPane}
|
| - */
|
| - function finishEditing(accept, e, text)
|
| - {
|
| - this.removeListElement(inputElementContainer);
|
| - if (accept) {
|
| - this._setBreakpoint(text, true);
|
| - this._saveBreakpoints();
|
| - }
|
| - }
|
| -
|
| - var config = new WebInspector.InplaceEditor.Config(finishEditing.bind(this, true), finishEditing.bind(this, false));
|
| - WebInspector.InplaceEditor.startEditing(inputElement, config);
|
| - },
|
| -
|
| - /**
|
| - * @param {string} url
|
| - * @param {boolean} enabled
|
| - * @param {!WebInspector.Target=} target
|
| - */
|
| - _setBreakpoint: function(url, enabled, target)
|
| - {
|
| - if (enabled)
|
| - this._updateBreakpointOnTarget(url, true, target);
|
| -
|
| - if (this._breakpointElements.has(url))
|
| - return;
|
| -
|
| - var element = createElement("li");
|
| - element._url = url;
|
| - element.addEventListener("contextmenu", this._contextMenu.bind(this, url), true);
|
| -
|
| - var label = createCheckboxLabel(undefined, enabled);
|
| - label.classList.add("checkbox-elem");
|
| - element.appendChild(label);
|
| - label.checkboxElement.addEventListener("click", this._checkboxClicked.bind(this, url), false);
|
| - element._checkboxElement = label.checkboxElement;
|
| -
|
| - var labelElement = label.createChild("span", "cursor-auto");
|
| - if (!url)
|
| - labelElement.textContent = WebInspector.UIString("Any XHR");
|
| - else
|
| - labelElement.textContent = WebInspector.UIString("URL contains \"%s\"", url);
|
| - labelElement.addEventListener("dblclick", this._labelClicked.bind(this, url), false);
|
| -
|
| - var currentElement = /** @type {?Element} */ (this.listElement.firstChild);
|
| - while (currentElement) {
|
| - if (currentElement._url && currentElement._url < element._url)
|
| - break;
|
| - currentElement = /** @type {?Element} */ (currentElement.nextSibling);
|
| - }
|
| - this.addListElement(element, currentElement);
|
| - this._breakpointElements.set(url, element);
|
| - },
|
| -
|
| - /**
|
| - * @param {string} url
|
| - * @param {!WebInspector.Target=} target
|
| - */
|
| - _removeBreakpoint: function(url, target)
|
| - {
|
| - var element = this._breakpointElements.get(url);
|
| - if (!element)
|
| - return;
|
| -
|
| - this.removeListElement(element);
|
| - this._breakpointElements.delete(url);
|
| - if (element._checkboxElement.checked)
|
| - this._updateBreakpointOnTarget(url, false, target);
|
| - },
|
| -
|
| - /**
|
| - * @param {string} url
|
| - * @param {boolean} enable
|
| - * @param {!WebInspector.Target=} target
|
| - */
|
| - _updateBreakpointOnTarget: function(url, enable, target)
|
| - {
|
| - var targets = target ? [target] : WebInspector.targetManager.targets();
|
| - for (var i = 0; i < targets.length; ++i) {
|
| - if (enable)
|
| - targets[i].domdebuggerAgent().setXHRBreakpoint(url);
|
| - else
|
| - targets[i].domdebuggerAgent().removeXHRBreakpoint(url);
|
| - }
|
| - },
|
| -
|
| - _contextMenu: function(url, event)
|
| - {
|
| - var contextMenu = new WebInspector.ContextMenu(event);
|
| -
|
| - /**
|
| - * @this {WebInspector.XHRBreakpointsSidebarPane}
|
| - */
|
| - function removeBreakpoint()
|
| - {
|
| - this._removeBreakpoint(url);
|
| - this._saveBreakpoints();
|
| - }
|
| -
|
| - /**
|
| - * @this {WebInspector.XHRBreakpointsSidebarPane}
|
| - */
|
| - function removeAllBreakpoints()
|
| - {
|
| - for (var url of this._breakpointElements.keys())
|
| - this._removeBreakpoint(url);
|
| - this._saveBreakpoints();
|
| - }
|
| - var removeAllTitle = WebInspector.UIString.capitalize("Remove ^all ^breakpoints");
|
| -
|
| - contextMenu.appendItem(WebInspector.UIString.capitalize("Add ^breakpoint"), this._addButtonClicked.bind(this));
|
| - contextMenu.appendItem(WebInspector.UIString.capitalize("Remove ^breakpoint"), removeBreakpoint.bind(this));
|
| - contextMenu.appendItem(removeAllTitle, removeAllBreakpoints.bind(this));
|
| - contextMenu.show();
|
| - },
|
| -
|
| - _checkboxClicked: function(url, event)
|
| - {
|
| - this._updateBreakpointOnTarget(url, event.target.checked);
|
| - this._saveBreakpoints();
|
| - },
|
| -
|
| - _labelClicked: function(url)
|
| - {
|
| - var element = this._breakpointElements.get(url);
|
| - var inputElement = createElementWithClass("span", "breakpoint-condition editing");
|
| - inputElement.textContent = url;
|
| - this.listElement.insertBefore(inputElement, element);
|
| - element.classList.add("hidden");
|
| -
|
| - /**
|
| - * @param {boolean} accept
|
| - * @param {!Element} e
|
| - * @param {string} text
|
| - * @this {WebInspector.XHRBreakpointsSidebarPane}
|
| - */
|
| - function finishEditing(accept, e, text)
|
| - {
|
| - this.removeListElement(inputElement);
|
| - if (accept) {
|
| - this._removeBreakpoint(url);
|
| - this._setBreakpoint(text, element._checkboxElement.checked);
|
| - this._saveBreakpoints();
|
| - } else
|
| - element.classList.remove("hidden");
|
| - }
|
| -
|
| - WebInspector.InplaceEditor.startEditing(inputElement, new WebInspector.InplaceEditor.Config(finishEditing.bind(this, true), finishEditing.bind(this, false)));
|
| - },
|
| -
|
| - highlightBreakpoint: function(url)
|
| - {
|
| - var element = this._breakpointElements.get(url);
|
| - if (!element)
|
| - return;
|
| - this.expand();
|
| - element.classList.add("breakpoint-hit");
|
| - this._highlightedElement = element;
|
| - },
|
| -
|
| - clearBreakpointHighlight: function()
|
| - {
|
| - if (this._highlightedElement) {
|
| - this._highlightedElement.classList.remove("breakpoint-hit");
|
| - delete this._highlightedElement;
|
| - }
|
| - },
|
| -
|
| - _saveBreakpoints: function()
|
| - {
|
| - var breakpoints = [];
|
| - for (var url of this._breakpointElements.keys())
|
| - breakpoints.push({ url: url, enabled: this._breakpointElements.get(url)._checkboxElement.checked });
|
| - WebInspector.settings.xhrBreakpoints.set(breakpoints);
|
| - },
|
| -
|
| - /**
|
| - * @param {!WebInspector.Target} target
|
| - */
|
| - _restoreBreakpoints: function(target)
|
| - {
|
| - var breakpoints = WebInspector.settings.xhrBreakpoints.get();
|
| - for (var i = 0; i < breakpoints.length; ++i) {
|
| - var breakpoint = breakpoints[i];
|
| - if (breakpoint && typeof breakpoint.url === "string")
|
| - this._setBreakpoint(breakpoint.url, breakpoint.enabled, target);
|
| - }
|
| - },
|
| -
|
| - __proto__: WebInspector.NativeBreakpointsSidebarPane.prototype
|
| -}
|
| -
|
| -/**
|
| - * @constructor
|
| - * @extends {WebInspector.SidebarPane}
|
| - * @implements {WebInspector.TargetManager.Observer}
|
| - */
|
| -WebInspector.EventListenerBreakpointsSidebarPane = function()
|
| -{
|
| - WebInspector.SidebarPane.call(this, WebInspector.UIString("Event Listener Breakpoints"));
|
| - this.registerRequiredCSS("components/breakpointsList.css");
|
| -
|
| - this._categoriesTreeOutline = new TreeOutline();
|
| - this._categoriesTreeOutline.element.tabIndex = 0;
|
| - this._categoriesTreeOutline.element.classList.add("event-listener-breakpoints");
|
| - this.bodyElement.appendChild(this._categoriesTreeOutline.element);
|
| -
|
| - this._categoryItems = [];
|
| - // FIXME: uncomment following once inspector stops being drop targer in major ports.
|
| - // Otherwise, inspector page reacts on drop event and tries to load the event data.
|
| - // this._createCategory(WebInspector.UIString("Drag"), ["drag", "drop", "dragstart", "dragend", "dragenter", "dragleave", "dragover"]);
|
| - this._createCategory(WebInspector.UIString("Animation"), ["requestAnimationFrame", "cancelAnimationFrame", "animationFrameFired"], true);
|
| - this._createCategory(WebInspector.UIString("Control"), ["resize", "scroll", "zoom", "focus", "blur", "select", "change", "submit", "reset"]);
|
| - this._createCategory(WebInspector.UIString("Clipboard"), ["copy", "cut", "paste", "beforecopy", "beforecut", "beforepaste"]);
|
| - this._createCategory(WebInspector.UIString("DOM Mutation"), ["DOMActivate", "DOMFocusIn", "DOMFocusOut", "DOMAttrModified", "DOMCharacterDataModified", "DOMNodeInserted", "DOMNodeInsertedIntoDocument", "DOMNodeRemoved", "DOMNodeRemovedFromDocument", "DOMSubtreeModified", "DOMContentLoaded"]);
|
| - this._createCategory(WebInspector.UIString("Device"), ["deviceorientation", "devicemotion"]);
|
| - this._createCategory(WebInspector.UIString("Drag / drop"), ["dragenter", "dragover", "dragleave", "drop"]);
|
| - this._createCategory(WebInspector.UIString("Keyboard"), ["keydown", "keyup", "keypress", "input"]);
|
| - this._createCategory(WebInspector.UIString("Load"), ["load", "beforeunload", "unload", "abort", "error", "hashchange", "popstate"]);
|
| - this._createCategory(WebInspector.UIString("Media"), ["play", "pause", "playing", "canplay", "canplaythrough", "seeking", "seeked", "timeupdate", "ended", "ratechange", "durationchange", "volumechange", "loadstart", "progress", "suspend", "abort", "error", "emptied", "stalled", "loadedmetadata", "loadeddata", "waiting"], false, ["audio", "video"]);
|
| - this._createCategory(WebInspector.UIString("Mouse"), ["click", "dblclick", "mousedown", "mouseup", "mouseover", "mousemove", "mouseout", "mouseenter", "mouseleave", "mousewheel", "wheel", "contextmenu"]);
|
| - this._createCategory(WebInspector.UIString("Promise"), ["newPromise", "promiseResolved", "promiseRejected"], true);
|
| - this._createCategory(WebInspector.UIString("Script"), ["scriptFirstStatement"], true);
|
| - this._createCategory(WebInspector.UIString("Timer"), ["setTimer", "clearTimer", "timerFired"], true);
|
| - this._createCategory(WebInspector.UIString("Touch"), ["touchstart", "touchmove", "touchend", "touchcancel"]);
|
| - this._createCategory(WebInspector.UIString("XHR"), ["readystatechange", "load", "loadstart", "loadend", "abort", "error", "progress", "timeout"], false, ["XMLHttpRequest", "XMLHttpRequestUpload"]);
|
| - this._createCategory(WebInspector.UIString("WebGL"), ["webglErrorFired", "webglWarningFired"], true);
|
| - this._createCategory(WebInspector.UIString("Window"), ["close"], true);
|
| -
|
| - WebInspector.targetManager.observeTargets(this);
|
| -}
|
| -
|
| -WebInspector.EventListenerBreakpointsSidebarPane.categoryListener = "listener:";
|
| -WebInspector.EventListenerBreakpointsSidebarPane.categoryInstrumentation = "instrumentation:";
|
| -WebInspector.EventListenerBreakpointsSidebarPane.eventTargetAny = "*";
|
| -
|
| -/**
|
| - * @param {string} eventName
|
| - * @param {!Object=} auxData
|
| - * @return {string}
|
| - */
|
| -WebInspector.EventListenerBreakpointsSidebarPane.eventNameForUI = function(eventName, auxData)
|
| -{
|
| - if (!WebInspector.EventListenerBreakpointsSidebarPane._eventNamesForUI) {
|
| - WebInspector.EventListenerBreakpointsSidebarPane._eventNamesForUI = {
|
| - "instrumentation:setTimer": WebInspector.UIString("Set Timer"),
|
| - "instrumentation:clearTimer": WebInspector.UIString("Clear Timer"),
|
| - "instrumentation:timerFired": WebInspector.UIString("Timer Fired"),
|
| - "instrumentation:newPromise": WebInspector.UIString("Promise Created"),
|
| - "instrumentation:promiseResolved": WebInspector.UIString("Promise Resolved"),
|
| - "instrumentation:promiseRejected": WebInspector.UIString("Promise Rejected"),
|
| - "instrumentation:scriptFirstStatement": WebInspector.UIString("Script First Statement"),
|
| - "instrumentation:requestAnimationFrame": WebInspector.UIString("Request Animation Frame"),
|
| - "instrumentation:cancelAnimationFrame": WebInspector.UIString("Cancel Animation Frame"),
|
| - "instrumentation:animationFrameFired": WebInspector.UIString("Animation Frame Fired"),
|
| - "instrumentation:webglErrorFired": WebInspector.UIString("WebGL Error Fired"),
|
| - "instrumentation:webglWarningFired": WebInspector.UIString("WebGL Warning Fired")
|
| - };
|
| - }
|
| - if (auxData) {
|
| - if (eventName === "instrumentation:webglErrorFired" && auxData["webglErrorName"]) {
|
| - var errorName = auxData["webglErrorName"];
|
| - // If there is a hex code of the error, display only this.
|
| - errorName = errorName.replace(/^.*(0x[0-9a-f]+).*$/i, "$1");
|
| - return WebInspector.UIString("WebGL Error Fired (%s)", errorName);
|
| - }
|
| - }
|
| - return WebInspector.EventListenerBreakpointsSidebarPane._eventNamesForUI[eventName] || eventName.substring(eventName.indexOf(":") + 1);
|
| -}
|
| -
|
| -WebInspector.EventListenerBreakpointsSidebarPane.prototype = {
|
| - /**
|
| - * @override
|
| - * @param {!WebInspector.Target} target
|
| - */
|
| - targetAdded: function(target)
|
| - {
|
| - this._restoreBreakpoints(target);
|
| - },
|
| -
|
| - /**
|
| - * @override
|
| - * @param {!WebInspector.Target} target
|
| - */
|
| - targetRemoved: function(target) { },
|
| -
|
| - /**
|
| - * @param {string} name
|
| - * @param {!Array.<string>} eventNames
|
| - * @param {boolean=} isInstrumentationEvent
|
| - * @param {!Array.<string>=} targetNames
|
| - */
|
| - _createCategory: function(name, eventNames, isInstrumentationEvent, targetNames)
|
| - {
|
| - var labelNode = createCheckboxLabel(name);
|
| -
|
| - var categoryItem = {};
|
| - categoryItem.element = new TreeElement(labelNode);
|
| - this._categoriesTreeOutline.appendChild(categoryItem.element);
|
| - categoryItem.element.listItemElement.classList.add("event-category");
|
| - categoryItem.element.selectable = true;
|
| -
|
| - categoryItem.checkbox = labelNode.checkboxElement;
|
| - categoryItem.checkbox.addEventListener("click", this._categoryCheckboxClicked.bind(this, categoryItem), true);
|
| -
|
| - categoryItem.targetNames = this._stringArrayToLowerCase(targetNames || [WebInspector.EventListenerBreakpointsSidebarPane.eventTargetAny]);
|
| - categoryItem.children = {};
|
| - var category = (isInstrumentationEvent ? WebInspector.EventListenerBreakpointsSidebarPane.categoryInstrumentation : WebInspector.EventListenerBreakpointsSidebarPane.categoryListener);
|
| - for (var i = 0; i < eventNames.length; ++i) {
|
| - var eventName = category + eventNames[i];
|
| -
|
| - var breakpointItem = {};
|
| - var title = WebInspector.EventListenerBreakpointsSidebarPane.eventNameForUI(eventName);
|
| -
|
| - labelNode = createCheckboxLabel(title);
|
| - labelNode.classList.add("source-code");
|
| -
|
| - breakpointItem.element = new TreeElement(labelNode);
|
| - categoryItem.element.appendChild(breakpointItem.element);
|
| -
|
| - breakpointItem.element.listItemElement.createChild("div", "breakpoint-hit-marker");
|
| - breakpointItem.element.selectable = false;
|
| -
|
| - breakpointItem.checkbox = labelNode.checkboxElement;
|
| - breakpointItem.checkbox.addEventListener("click", this._breakpointCheckboxClicked.bind(this, eventName, categoryItem.targetNames), true);
|
| - breakpointItem.parent = categoryItem;
|
| -
|
| - categoryItem.children[eventName] = breakpointItem;
|
| - }
|
| - this._categoryItems.push(categoryItem);
|
| - },
|
| -
|
| - /**
|
| - * @param {!Array.<string>} array
|
| - * @return {!Array.<string>}
|
| - */
|
| - _stringArrayToLowerCase: function(array)
|
| - {
|
| - return array.map(function(value) {
|
| - return value.toLowerCase();
|
| - });
|
| - },
|
| -
|
| - _categoryCheckboxClicked: function(categoryItem)
|
| - {
|
| - var checked = categoryItem.checkbox.checked;
|
| - for (var eventName in categoryItem.children) {
|
| - var breakpointItem = categoryItem.children[eventName];
|
| - if (breakpointItem.checkbox.checked === checked)
|
| - continue;
|
| - if (checked)
|
| - this._setBreakpoint(eventName, categoryItem.targetNames);
|
| - else
|
| - this._removeBreakpoint(eventName, categoryItem.targetNames);
|
| - }
|
| - this._saveBreakpoints();
|
| - },
|
| -
|
| - /**
|
| - * @param {string} eventName
|
| - * @param {!Array.<string>} targetNames
|
| - * @param {!Event} event
|
| - */
|
| - _breakpointCheckboxClicked: function(eventName, targetNames, event)
|
| - {
|
| - if (event.target.checked)
|
| - this._setBreakpoint(eventName, targetNames);
|
| - else
|
| - this._removeBreakpoint(eventName, targetNames);
|
| - this._saveBreakpoints();
|
| - },
|
| -
|
| - /**
|
| - * @param {string} eventName
|
| - * @param {?Array.<string>=} eventTargetNames
|
| - * @param {!WebInspector.Target=} target
|
| - */
|
| - _setBreakpoint: function(eventName, eventTargetNames, target)
|
| - {
|
| - eventTargetNames = eventTargetNames || [WebInspector.EventListenerBreakpointsSidebarPane.eventTargetAny];
|
| - for (var i = 0; i < eventTargetNames.length; ++i) {
|
| - var eventTargetName = eventTargetNames[i];
|
| - var breakpointItem = this._findBreakpointItem(eventName, eventTargetName);
|
| - if (!breakpointItem)
|
| - continue;
|
| - breakpointItem.checkbox.checked = true;
|
| - breakpointItem.parent.dirtyCheckbox = true;
|
| - this._updateBreakpointOnTarget(eventName, eventTargetName, true, target);
|
| - }
|
| - this._updateCategoryCheckboxes();
|
| - },
|
| -
|
| - /**
|
| - * @param {string} eventName
|
| - * @param {?Array.<string>=} eventTargetNames
|
| - * @param {!WebInspector.Target=} target
|
| - */
|
| - _removeBreakpoint: function(eventName, eventTargetNames, target)
|
| - {
|
| - eventTargetNames = eventTargetNames || [WebInspector.EventListenerBreakpointsSidebarPane.eventTargetAny];
|
| - for (var i = 0; i < eventTargetNames.length; ++i) {
|
| - var eventTargetName = eventTargetNames[i];
|
| - var breakpointItem = this._findBreakpointItem(eventName, eventTargetName);
|
| - if (!breakpointItem)
|
| - continue;
|
| - breakpointItem.checkbox.checked = false;
|
| - breakpointItem.parent.dirtyCheckbox = true;
|
| - this._updateBreakpointOnTarget(eventName, eventTargetName, false, target);
|
| - }
|
| - this._updateCategoryCheckboxes();
|
| - },
|
| -
|
| - /**
|
| - * @param {string} eventName
|
| - * @param {string} eventTargetName
|
| - * @param {boolean} enable
|
| - * @param {!WebInspector.Target=} target
|
| - */
|
| - _updateBreakpointOnTarget: function(eventName, eventTargetName, enable, target)
|
| - {
|
| - var targets = target ? [target] : WebInspector.targetManager.targets();
|
| - for (var i = 0; i < targets.length; ++i) {
|
| - if (eventName.startsWith(WebInspector.EventListenerBreakpointsSidebarPane.categoryListener)) {
|
| - var protocolEventName = eventName.substring(WebInspector.EventListenerBreakpointsSidebarPane.categoryListener.length);
|
| - if (enable)
|
| - targets[i].domdebuggerAgent().setEventListenerBreakpoint(protocolEventName, eventTargetName);
|
| - else
|
| - targets[i].domdebuggerAgent().removeEventListenerBreakpoint(protocolEventName, eventTargetName);
|
| - } else if (eventName.startsWith(WebInspector.EventListenerBreakpointsSidebarPane.categoryInstrumentation)) {
|
| - var protocolEventName = eventName.substring(WebInspector.EventListenerBreakpointsSidebarPane.categoryInstrumentation.length);
|
| - if (enable)
|
| - targets[i].domdebuggerAgent().setInstrumentationBreakpoint(protocolEventName);
|
| - else
|
| - targets[i].domdebuggerAgent().removeInstrumentationBreakpoint(protocolEventName);
|
| - }
|
| - }
|
| - },
|
| -
|
| - _updateCategoryCheckboxes: function()
|
| - {
|
| - for (var i = 0; i < this._categoryItems.length; ++i) {
|
| - var categoryItem = this._categoryItems[i];
|
| - if (!categoryItem.dirtyCheckbox)
|
| - continue;
|
| - categoryItem.dirtyCheckbox = false;
|
| - var hasEnabled = false;
|
| - var hasDisabled = false;
|
| - for (var eventName in categoryItem.children) {
|
| - var breakpointItem = categoryItem.children[eventName];
|
| - if (breakpointItem.checkbox.checked)
|
| - hasEnabled = true;
|
| - else
|
| - hasDisabled = true;
|
| - }
|
| - categoryItem.checkbox.checked = hasEnabled;
|
| - categoryItem.checkbox.indeterminate = hasEnabled && hasDisabled;
|
| - }
|
| - },
|
| -
|
| - /**
|
| - * @param {string} eventName
|
| - * @param {string=} targetName
|
| - * @return {?Object}
|
| - */
|
| - _findBreakpointItem: function(eventName, targetName)
|
| - {
|
| - targetName = (targetName || WebInspector.EventListenerBreakpointsSidebarPane.eventTargetAny).toLowerCase();
|
| - for (var i = 0; i < this._categoryItems.length; ++i) {
|
| - var categoryItem = this._categoryItems[i];
|
| - if (categoryItem.targetNames.indexOf(targetName) === -1)
|
| - continue;
|
| - var breakpointItem = categoryItem.children[eventName];
|
| - if (breakpointItem)
|
| - return breakpointItem;
|
| - }
|
| - return null;
|
| - },
|
| -
|
| - /**
|
| - * @param {string} eventName
|
| - * @param {string=} targetName
|
| - */
|
| - highlightBreakpoint: function(eventName, targetName)
|
| - {
|
| - var breakpointItem = this._findBreakpointItem(eventName, targetName);
|
| - if (!breakpointItem || !breakpointItem.checkbox.checked)
|
| - breakpointItem = this._findBreakpointItem(eventName, WebInspector.EventListenerBreakpointsSidebarPane.eventTargetAny);
|
| - if (!breakpointItem)
|
| - return;
|
| - this.expand();
|
| - breakpointItem.parent.element.expand();
|
| - breakpointItem.element.listItemElement.classList.add("breakpoint-hit");
|
| - this._highlightedElement = breakpointItem.element.listItemElement;
|
| - },
|
| -
|
| - clearBreakpointHighlight: function()
|
| - {
|
| - if (this._highlightedElement) {
|
| - this._highlightedElement.classList.remove("breakpoint-hit");
|
| - delete this._highlightedElement;
|
| - }
|
| - },
|
| -
|
| - _saveBreakpoints: function()
|
| - {
|
| - var breakpoints = [];
|
| - for (var i = 0; i < this._categoryItems.length; ++i) {
|
| - var categoryItem = this._categoryItems[i];
|
| - for (var eventName in categoryItem.children) {
|
| - var breakpointItem = categoryItem.children[eventName];
|
| - if (breakpointItem.checkbox.checked)
|
| - breakpoints.push({ eventName: eventName, targetNames: categoryItem.targetNames });
|
| - }
|
| - }
|
| - WebInspector.settings.eventListenerBreakpoints.set(breakpoints);
|
| - },
|
| -
|
| - /**
|
| - * @param {!WebInspector.Target} target
|
| - */
|
| - _restoreBreakpoints: function(target)
|
| - {
|
| - var breakpoints = WebInspector.settings.eventListenerBreakpoints.get();
|
| - for (var i = 0; i < breakpoints.length; ++i) {
|
| - var breakpoint = breakpoints[i];
|
| - if (breakpoint && typeof breakpoint.eventName === "string")
|
| - this._setBreakpoint(breakpoint.eventName, breakpoint.targetNames, target);
|
| - }
|
| - },
|
| -
|
| - __proto__: WebInspector.SidebarPane.prototype
|
| -}
|
|
|