Searched defs:WebInspector (Results 1 - 25 of 89) sorted by relevance

1234

/external/webkit/WebCore/inspector/front-end/
H A DDOMStorage.js29 WebInspector.DOMStorage = function(id, domain, isLocalStorage)
36 WebInspector.DOMStorage.prototype = {
59 var callId = WebInspector.Callback.wrap(callback);
65 var callId = WebInspector.Callback.wrap(callback);
71 var callId = WebInspector.Callback.wrap(callback);
76 WebInspector.didGetDOMStorageEntries = WebInspector.Callback.processCallback;
77 WebInspector.didSetDOMStorageItem = WebInspector.Callback.processCallback;
78 WebInspector
[all...]
H A DPlacard.js26 WebInspector.Placard = function(title, subtitle)
46 WebInspector.Placard.prototype = {
H A DScript.js26 WebInspector.Script = function(sourceID, sourceURL, source, startingLine, errorLine, errorMessage)
45 this.sourceURL = WebInspector.UIString("(program): %s", match[1]);
49 WebInspector.Script.prototype = {
H A DSection.js30 WebInspector.Section = function(title, subtitle)
55 WebInspector.Section.prototype = {
H A DBreakpoint.js26 WebInspector.Breakpoint = function(url, line, sourceID, condition)
36 WebInspector.Breakpoint.prototype = {
68 var displayName = (this.url ? WebInspector.displayNameForURL(this.url) : WebInspector.UIString("(program)"));
96 WebInspector.Breakpoint.prototype.__proto__ = WebInspector.Object.prototype;
H A DPropertiesSection.js30 WebInspector.PropertiesSection = function(title, subtitle)
32 WebInspector.Section.call(this, title, subtitle);
43 WebInspector.PropertiesSection.prototype.__proto__ = WebInspector.Section.prototype;
H A DSidebarPane.js29 WebInspector.SidebarPane = function(title)
51 WebInspector.SidebarPane.prototype = {
128 if (isEnterKey(event) || event.keyCode === WebInspector.KeyboardShortcut.KeyCodes.Space)
133 WebInspector.SidebarPane.prototype.__proto__ = WebInspector.Object.prototype;
H A DView.js26 WebInspector.View = function(element)
32 WebInspector.View.prototype = {
74 WebInspector.View.prototype.__proto__ = WebInspector.Object.prototype;
H A DTestController.js31 WebInspector.TestController = function(callId)
37 WebInspector.TestController.prototype = {
51 if (WebInspector.pendingDispatches === 0) {
59 WebInspector.evaluateForTestInFrontend = function(callId, script)
61 var controller = new WebInspector.TestController(callId);
67 result = window[script].call(WebInspector, controller);
H A DTopDownProfileDataGridTree.js26 WebInspector.TopDownProfileDataGridNode = function(/*ProfileView*/ profileView, /*ProfileNode*/ profileNode, /*TopDownProfileDataGridTree*/ owningTree)
30 WebInspector.ProfileDataGridNode.call(this, profileView, profileNode, owningTree, hasChildren);
35 WebInspector.TopDownProfileDataGridNode.prototype = {
42 this.appendChild(new WebInspector.TopDownProfileDataGridNode(this.profileView, children[i], this.tree));
67 WebInspector.TopDownProfileDataGridNode.prototype.__proto__ = WebInspector.ProfileDataGridNode.prototype;
69 WebInspector.TopDownProfileDataGridTree = function(/*ProfileView*/ profileView, /*ProfileNode*/ profileNode)
71 WebInspector.ProfileDataGridTree.call(this, profileView, profileNode);
75 WebInspector.TopDownProfileDataGridNode.prototype._populate.call(this);
78 WebInspector
73 WebInspector.TopDownProfileDataGridNode.prototype._populate.call(this); class
[all...]
H A Dinspector.js52 var WebInspector = {
90 return WebInspector.PlatformFlavor.WindowsVista;
95 return WebInspector.PlatformFlavor.MacSnowLeopard;
98 return WebInspector.PlatformFlavor.MacTiger;
100 return WebInspector.PlatformFlavor.MacLeopard;
103 return WebInspector.PlatformFlavor.MacSnowLeopard;
191 for (var panelName in WebInspector.panels) {
192 if (WebInspector.panels[panelName] == x)
201 this.panels.elements = new WebInspector.ElementsPanel();
203 this.panels.resources = new WebInspector
[all...]
H A DScopeChainSidebarPane.js26 WebInspector.ScopeChainSidebarPane = function()
28 WebInspector.SidebarPane.call(this, WebInspector.UIString("Scope Variables"));
32 WebInspector.ScopeChainSidebarPane.prototype = {
43 infoElement.textContent = WebInspector.UIString("Not Paused");
59 title = WebInspector.UIString("Local");
60 emptyPlaceholder = WebInspector.UIString("No Variables");
63 extraProperties = [ new WebInspector.ObjectPropertyProxy("this", scopeObjectProxy.thisObject) ];
65 title = WebInspector.UIString("Closure");
66 emptyPlaceholder = WebInspector
[all...]
H A DBottomUpProfileDataGridTree.js32 WebInspector.BottomUpProfileDataGridNode = function(/*ProfileView*/ profileView, /*ProfileNode*/ profileNode, /*BottomUpProfileDataGridTree*/ owningTree)
34 WebInspector.ProfileDataGridNode.call(this, profileView, profileNode, owningTree, this._willHaveChildren(profileNode));
39 WebInspector.BottomUpProfileDataGridNode.prototype = {
79 WebInspector.ProfileDataGridNode.prototype._restore();
89 WebInspector.ProfileDataGridNode.prototype._merge.call(this, child, shouldAbsorb);
115 var child = new WebInspector.BottomUpProfileDataGridNode(this.profileView, ancestor, this.tree);
146 WebInspector.BottomUpProfileDataGridNode.prototype.__proto__ = WebInspector.ProfileDataGridNode.prototype;
148 WebInspector.BottomUpProfileDataGridTree = function(/*ProfileView*/ aProfileView, /*ProfileNode*/ aProfileNode)
150 WebInspector
87 WebInspector.ProfileDataGridNode.prototype._merge.call(this, child, shouldAbsorb); class
[all...]
H A DChangesView.js30 WebInspector.ChangesView = function(drawer)
32 WebInspector.View.call(this);
39 this.clearButton.title = WebInspector.UIString("Clear changes log.");
44 this.toggleChangesButton.title = WebInspector.UIString("Show changes view.");
50 WebInspector.ChangesView.prototype = {
70 this.toggleChangesButton.title = WebInspector.UIString("Hide changes view.");
76 this.toggleChangesButton.title = WebInspector.UIString("Show changes view.");
80 WebInspector.ChangesView.prototype.__proto__ = WebInspector.View.prototype;
H A DContextMenu.js31 WebInspector.ContextMenu = function() {
36 WebInspector.ContextMenu.prototype = {
44 WebInspector._contextMenu = this;
73 WebInspector.contextMenuItemSelected = function(id)
75 if (WebInspector._contextMenu)
76 WebInspector._contextMenu._itemSelected(id);
79 WebInspector.contextMenuCleared = function()
82 // so we can't delete last menu object from WebInspector. Fix the contract.
H A DFontView.js29 WebInspector.FontView = function(resource)
31 WebInspector.ResourceView.call(this, resource);
51 WebInspector.FontView.prototype = {
54 WebInspector.ResourceView.prototype.show.call(this, parentElement);
104 WebInspector.FontView.prototype.__proto__ = WebInspector.ResourceView.prototype;
H A DBreakpointsSidebarPane.js26 WebInspector.BreakpointsSidebarPane = function()
28 WebInspector.SidebarPane.call(this, WebInspector.UIString("Breakpoints"));
37 this.emptyElement.textContent = WebInspector.UIString("No Breakpoints");
42 WebInspector.BreakpointsSidebarPane.prototype = {
80 var script = WebInspector.panels.scripts.scriptOrResourceForID(breakpoint.sourceID);
82 WebInspector.panels.scripts.showScript(script, breakpoint.line);
169 WebInspector.BreakpointsSidebarPane.prototype.__proto__ = WebInspector.SidebarPane.prototype;
H A DScriptView.js26 WebInspector.ScriptView = function(script)
28 WebInspector.View.call(this);
36 this.sourceFrame = new WebInspector.SourceFrame(this.element, this._addBreakpoint.bind(this), this._removeBreakpoint.bind(this));
39 WebInspector.ScriptView.prototype = {
42 WebInspector.View.prototype.show.call(this, parentElement);
68 var breakpoint = new WebInspector.Breakpoint(this.script.sourceURL, line, this.script.sourceID);
69 WebInspector.panels.scripts.addBreakpoint(breakpoint);
75 hide: WebInspector.SourceView.prototype.hide,
76 revealLine: WebInspector.SourceView.prototype.revealLine,
77 highlightLine: WebInspector
[all...]
H A DDatabaseTableView.js26 WebInspector.DatabaseTableView = function(database, tableName)
28 WebInspector.View.call(this);
36 this.refreshButton = new WebInspector.StatusBarButton(WebInspector.UIString("Refresh"), "refresh-storage-status-bar-item");
40 WebInspector.DatabaseTableView.prototype = {
43 WebInspector.View.prototype.show.call(this, parentElement);
61 var dataGrid = WebInspector.panels.storage.dataGridForResult(result);
65 emptyMsgElement.textContent = WebInspector.UIString("The ā€œ%sā€\ntable is empty.", this.tableName);
80 errorMsgElement.textContent = WebInspector.UIString("An error occurred trying to\nread the ā€œ%sā€ table.", this.tableName);
90 WebInspector
[all...]
H A DObjectPropertiesSection.js27 WebInspector.ObjectPropertiesSection = function(object, title, subtitle, emptyPlaceholder, ignoreHasOwnProperty, extraProperties, treeElementConstructor)
29 this.emptyPlaceholder = (emptyPlaceholder || WebInspector.UIString("No Properties"));
33 this.treeElementConstructor = treeElementConstructor || WebInspector.ObjectPropertyTreeElement;
36 WebInspector.PropertiesSection.call(this, title, subtitle);
39 WebInspector.ObjectPropertiesSection.prototype = {
62 rootPropertyComparer = WebInspector.ObjectPropertiesSection.CompareProperties;
83 WebInspector.ObjectPropertiesSection.prototype.__proto__ = WebInspector.PropertiesSection.prototype;
85 WebInspector.ObjectPropertiesSection.CompareProperties = function(propertyA, propertyB)
126 WebInspector
[all...]
H A DObjectProxy.js31 WebInspector.ObjectProxy = function(injectedScriptId, objectId, path, protoDepth, description, hasChildren)
41 WebInspector.ObjectProxy.wrapPrimitiveValue = function(value)
43 var proxy = new WebInspector.ObjectProxy();
49 WebInspector.ObjectProxy.getPropertiesAsync = function(objectProxy, propertiesToQueryFor, callback)
67 WebInspector.ObjectPropertyProxy = function(name, value)
H A DResourceCategory.js29 WebInspector.ResourceCategory = function(name, title, color)
31 WebInspector.AbstractTimelineCategory.call(this, name, title, color);
35 WebInspector.ResourceCategory.prototype = {
65 WebInspector.ResourceCategory.prototype.__proto__ = WebInspector.AbstractTimelineCategory.prototype;
H A DSidebarTreeElement.js26 WebInspector.SidebarSectionTreeElement = function(title, representedObject, hasChildren)
31 WebInspector.SidebarSectionTreeElement.prototype = {
64 WebInspector.SidebarSectionTreeElement.prototype.__proto__ = TreeElement.prototype;
66 WebInspector.SidebarTreeElement = function(className, title, subtitle, representedObject, hasChildren)
99 WebInspector.SidebarTreeElement.prototype = {
201 WebInspector.SidebarTreeElement.prototype.__proto__ = TreeElement.prototype;
H A DInspectorBackendStub.js33 WebInspector.InspectorBackendStub = function()
43 WebInspector.InspectorBackendStub.prototype = {
94 WebInspector.didGetResourceContent(callId, "");
137 WebInspector.resourceTrackingWasEnabled();
143 WebInspector.resourceTrackingWasDisabled();
215 WebInspector.didGetProfileHeaders(callId, []);
220 if (WebInspector.__fullProfiles && (uid in WebInspector.__fullProfiles))
222 WebInspector.didGetProfile(callId, WebInspector
[all...]
H A DCallStackSidebarPane.js26 WebInspector.CallStackSidebarPane = function()
28 WebInspector.SidebarPane.call(this, WebInspector.UIString("Call Stack"));
32 var shortcut = WebInspector.KeyboardShortcut.makeKey(WebInspector.KeyboardShortcut.KeyCodes.Period,
33 WebInspector.KeyboardShortcut.Modifiers.Ctrl);
36 var shortcut = WebInspector.KeyboardShortcut.makeKey(WebInspector.KeyboardShortcut.KeyCodes.Comma,
37 WebInspector.KeyboardShortcut.Modifiers.Ctrl);
41 WebInspector
[all...]

Completed in 145 milliseconds

1234