/external/webkit/Source/WebCore/inspector/front-end/ |
StylesSidebarPane.js | 30 WebInspector.StylesSidebarPane = function(computedStylePane) 32 WebInspector.SidebarPane.call(this, WebInspector.UIString("Styles")); 39 option.label = WebInspector.UIString("As Authored"); 45 option.label = WebInspector.UIString("Hex Colors"); 51 option.label = WebInspector.UIString("RGB Colors"); 57 option.label = WebInspector.UIString("HSL Colors"); 64 option.label = WebInspector.UIString("New Style Rule"); 69 var format = WebInspector.settings.colorFormat; 84 WebInspector.StylesSidebarPane.StyleValueDelimiters = " \t\n\"':;,/()" [all...] |
CookiesTable.js | 31 WebInspector.CookiesTable = function(cookieDomain, expandable, deleteCallback) 36 columns[0].title = WebInspector.UIString("Name"); 40 columns[1].title = WebInspector.UIString("Value"); 43 columns[2].title = WebInspector.UIString("Domain"); 46 columns[3].title = WebInspector.UIString("Path"); 49 columns[4].title = WebInspector.UIString("Expires"); 52 columns[5].title = WebInspector.UIString("Size"); 56 columns[6].title = WebInspector.UIString("HTTP"); 60 columns[7].title = WebInspector.UIString("Secure"); 65 this._dataGrid = new WebInspector.DataGrid(columns, null, deleteCallback ? this._onDeleteFromGrid.bind(this) : null) [all...] |
ExtensionServer.js | 31 WebInspector.ExtensionServer = function() 39 this._status = new WebInspector.ExtensionStatus(); 61 WebInspector.ExtensionServer.prototype = { 117 this._postNotification("resource-finished", this._resourceId(resource), (new WebInspector.HAREntry(resource)).build()); 185 if (id in this._clientObjects || id in WebInspector.panels) 188 var panel = new WebInspector.ExtensionPanel(id, message.title, message.icon); 190 WebInspector.panels[id] = panel; 191 WebInspector.addPanel(panel); 200 var panel = WebInspector.panels[message.panel]; 206 var sidebar = new WebInspector.ExtensionSidebarPane(message.title, message.id) [all...] |
MetricsSidebarPane.js | 29 WebInspector.MetricsSidebarPane = function() 31 WebInspector.SidebarPane.call(this, WebInspector.UIString("Metrics")); 35 WebInspector.MetricsSidebarPane.prototype = { 54 WebInspector.cssModel.getComputedStyleAsync(node.id, callback); 61 WebInspector.cssModel.getInlineStyleAsync(node.id, inlineStyleCallback); 156 var boxLabels = [WebInspector.UIString("content"), WebInspector.UIString("padding"), WebInspector.UIString("border"), WebInspector.UIString("margin"), WebInspector.UIString("position")] [all...] |
SidebarTreeElement.js | 26 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 = { 203 WebInspector.SidebarTreeElement.prototype.__proto__ = TreeElement.prototype;
|
Checkbox.js | 26 WebInspector.Checkbox = function(label, className, tooltip) 39 WebInspector.Checkbox.prototype = {
|
Script.js | 26 WebInspector.Script = function(sourceID, sourceURL, lineOffset, columnOffset, length, errorLine, errorMessage, isContentScript) 38 WebInspector.Script.prototype = {
|
StatusBarButton.js | 31 WebInspector.StatusBarButton = function(title, className, states) 59 WebInspector.StatusBarButton.prototype = { 148 WebInspector.StatusBarButton.prototype.__proto__ = WebInspector.Object.prototype;
|
DOMSyntaxHighlighter.js | 31 WebInspector.DOMSyntaxHighlighter = function(mimeType) 33 this._tokenizer = WebInspector.SourceTokenizer.Registry.getInstance().getTokenizer(mimeType); 36 WebInspector.DOMSyntaxHighlighter.prototype = {
|
TimelineOverviewPane.js | 31 WebInspector.TimelineOverviewPane = function(categories) 42 this._overviewGrid = new WebInspector.TimelineGrid(); 47 this._heapGraph = new WebInspector.HeapGraph(); 56 var categoryGraph = new WebInspector.TimelineCategoryGraph(this._categories[category], i++ % 2); 84 this._overviewCalculator = new WebInspector.TimelineOverviewCalculator(); 90 WebInspector.TimelineOverviewPane.minSelectableSize = 12; 92 WebInspector.TimelineOverviewPane.prototype = { 218 WebInspector.elementDragStart(resizeElement, this._windowResizeDragging.bind(this, resizeElement), this._endWindowDragging.bind(this), event, "col-resize"); 235 WebInspector.elementDragStart(this._overviewWindowElement, this._windowDragging.bind(this, event.pageX, 240 this._overviewWindowSelector = new WebInspector.TimelinePanel.WindowSelector(this._overviewGrid.element, position, event) [all...] |
Toolbar.js | 32 WebInspector.Toolbar = function() 44 WebInspector.Toolbar.prototype = { 58 if ((!WebInspector.attached && WebInspector.platformFlavor !== WebInspector.PlatformFlavor.MacLeopard && WebInspector.platformFlavor !== WebInspector.PlatformFlavor.MacSnowLeopard) || WebInspector.port == "qt") 71 WebInspector.elementDragStart(this.element, this._toolbarDrag.bind(this), this._toolbarDragEnd.bind(this), event, (WebInspector.attached ? "row-resize" : "default")) [all...] |
ElementsTreeOutline.js | 31 WebInspector.ElementsTreeOutline = function() { 46 WebInspector.ElementsTreeOutline.prototype = { 59 this._isXMLMimeType = !!(WebInspector.mainResource && WebInspector.mainResource.mimeType && WebInspector.mainResource.mimeType.match(/x(?:ht)?ml/i)); 114 treeElement = new WebInspector.ElementsTreeElement(this.rootDOMNode); 121 treeElement = new WebInspector.ElementsTreeElement(node); 244 WebInspector.highlightDOMNode(element ? element.representedObject.id : 0); 258 WebInspector.highlightDOMNode(0); 271 WebInspector.panels.elements.switchToAndFocus(listItem.treeElement.representedObject) [all...] |
DOMAgent.js | 32 WebInspector.DOMNode = function(doc, payload) { 82 WebInspector.DOMNode.prototype = { 256 var node = new WebInspector.DOMNode(this.ownerDocument, payload); 281 var node = new WebInspector.DOMNode(this.ownerDocument, payload); 328 WebInspector.DOMDocument = function(domAgent, payload) 330 WebInspector.DOMNode.call(this, this, payload); 335 WebInspector.DOMDocument.prototype.__proto__ = WebInspector.DOMNode.prototype; 337 WebInspector.DOMAgent = function() { 340 InspectorBackend.registerDomainDispatcher("DOM", new WebInspector.DOMDispatcher(this)) [all...] |
SourceHTMLTokenizer.re2js | 43 WebInspector.SourceHTMLTokenizer = function() 45 WebInspector.SourceTokenizer.call(this); 77 WebInspector.SourceHTMLTokenizer.prototype = { 284 this._internalJavaScriptTokenizer = WebInspector.SourceTokenizer.Registry.getInstance().getTokenizer("text/javascript"); 293 this._internalCSSTokenizer = WebInspector.SourceTokenizer.Registry.getInstance().getTokenizer("text/css"); 355 WebInspector.SourceHTMLTokenizer.prototype.__proto__ = WebInspector.SourceTokenizer.prototype;
|
Popover.js | 31 WebInspector.Popover = function(contentElement) 46 WebInspector.Popover.prototype = { 50 if (WebInspector.Popover._popoverElement) 51 document.body.removeChild(WebInspector.Popover._popoverElement); 52 WebInspector.Popover._popoverElement = this.element; 69 if (WebInspector.Popover._popoverElement) { 70 delete WebInspector.Popover._popoverElement; 157 WebInspector.PopoverHelper = function(panelElement, getAnchor, showPopup, showOnClick, onHide) 169 WebInspector.PopoverHelper.prototype = {
|
ScriptFormatter.js | 31 WebInspector.ScriptFormatter = function() 39 WebInspector.ScriptFormatter.locationToPosition = function(lineEndings, location) 45 WebInspector.ScriptFormatter.lineToPosition = function(lineEndings, lineNumber) 50 WebInspector.ScriptFormatter.positionToLocation = function(lineEndings, position) 61 WebInspector.ScriptFormatter.findScriptRanges = function(lineEndings, scripts) 66 start.position = WebInspector.ScriptFormatter.locationToPosition(lineEndings, start); 68 var end = WebInspector.ScriptFormatter.positionToLocation(lineEndings, endPosition); 76 WebInspector.ScriptFormatter.prototype = { 79 var scriptRanges = WebInspector.ScriptFormatter.findScriptRanges(text.lineEndings(), scripts);
|
SourceFrame.js | 31 WebInspector.SourceFrame = function(delegate, url) 33 WebInspector.TextViewerDelegate.call(this); 38 this._textModel = new WebInspector.TextEditorModel(); 41 this._textViewer = new WebInspector.TextViewer(this._textModel, WebInspector.platform, this._url, this); 55 WebInspector.SourceFrame.Events = { 59 WebInspector.SourceFrame.prototype = { 243 WebInspector.markBeingEdited(this._textViewer.element, !readOnly); 253 WebInspector.searchController.cancelSearch(); 338 this.dispatchEventToListeners(WebInspector.SourceFrame.Events.Loaded) [all...] |
Color.js | 30 WebInspector.Color = function(str) 36 WebInspector.Color.prototype = { 289 if (value in WebInspector.Color.AdvancedNickNames) { 291 var set = WebInspector.Color.AdvancedNickNames[value]; 322 if (nickname in WebInspector.Color.Nicknames) { 324 this.hex = WebInspector.Color.Nicknames[nickname]; 337 if (hex && hex in WebInspector.Color.HexTable) { 338 var set = WebInspector.Color.HexTable[hex]; 373 WebInspector.Color.HexTable = { 515 WebInspector.Color.Nicknames = [all...] |
Placard.js | 26 WebInspector.Placard = function(title, subtitle) 46 WebInspector.Placard.prototype = {
|
TextEditorModel.js | 31 WebInspector.TextRange = function(startLine, startColumn, endLine, endColumn) 39 WebInspector.TextRange.prototype = { 52 return new WebInspector.TextRange(this.startLine, this.startColumn, this.endLine, this.endColumn); 56 WebInspector.TextEditorModel = function() 65 WebInspector.TextEditorModel.prototype = { 97 range = new WebInspector.TextRange(0, 0, this._lines.length - 1, this._lines[this._lines.length - 1].length); 118 return new WebInspector.TextRange(range.startLine, range.startColumn, range.startLine, range.startColumn); 138 return new WebInspector.TextRange(range.startLine, range.startColumn, 190 return new WebInspector.TextRange(lineNumber, this.wordStart(lineNumber, column, true), lineNumber, this.wordEnd(lineNumber, column, true)); 212 range = new WebInspector.TextRange(0, 0, this._lines.length - 1, this._lines[this._lines.length - 1].length) [all...] |
TextViewer.js | 32 WebInspector.TextViewer = function(textModel, platform, url, delegate) 34 WebInspector.View.call(this); 47 this._mainPanel = new WebInspector.TextEditorMainPanel(this._textModel, url, syncScrollListener, syncDecorationsForLineListener, enterTextChangeMode, exitTextChangeMode); 48 this._gutterPanel = new WebInspector.TextEditorGutterPanel(this._textModel, syncDecorationsForLineListener); 63 WebInspector.TextViewer.prototype = { 168 // WebInspector.TextModel listener 249 var keys = WebInspector.KeyboardShortcut.Keys; 250 var modifiers = WebInspector.KeyboardShortcut.Modifiers; 255 this._shortcuts[WebInspector.KeyboardShortcut.makeKey("s", modifiers.CtrlOrMeta)] = commitEditing; 256 this._shortcuts[WebInspector.KeyboardShortcut.makeKey(keys.Enter.code, modifiers.CtrlOrMeta)] = commitEditing [all...] |
/external/webkit/Source/WebKit/chromium/src/js/ |
Tests.js | 180 this.assertEquals(WebInspector.panels[panelName], WebInspector.currentPanel); 237 var panel = WebInspector.panels.profiles; 280 var panel = WebInspector.panels.profiles; 312 WebInspector.HeapSnapshotProfileType.prototype.buttonClicked(); 343 this.assertEquals(WebInspector.panels.elements, WebInspector.currentPanel, "Elements panel should be current one."); 345 this.addSniffer(WebInspector.panels.scripts, "reset", waitUntilScriptIsParsed); 411 test.assertTrue(!!WebInspector.panels.scripts.visibleView, "No visible script view."); 455 if (WebInspector.currentPanel.paused) [all...] |
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
WKBundleInspector.cpp | 33 #include "WebInspector.h" 40 return toAPI(WebInspector::APIType);
|
/external/webkit/Source/WebKit/mac/WebInspector/ |
WebInspector.h | 34 @interface WebInspector : NSObject
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
WebInspectorClient.cpp | 32 #include "WebInspector.h" 79 WebInspector* inspector = m_page->inspector();
|