HomeSort by relevance Sort by last modified time
    Searched defs:WebInspector (Results 76 - 100 of 125) sorted by null

1 2 34 5

  /external/webkit/Source/WebCore/inspector/front-end/
HeapSnapshot.js 31 WebInspector.HeapSnapshotArraySlice = function(snapshot, arrayName, start, end)
41 WebInspector.HeapSnapshotArraySlice.prototype = {
48 WebInspector.HeapSnapshotEdge = function(snapshot, edges, edgeIndex)
55 WebInspector.HeapSnapshotEdge.prototype = {
58 return new WebInspector.HeapSnapshotEdge(this._snapshot, this._edges, this.edgeIndex);
103 return new WebInspector.HeapSnapshotNode(this._snapshot, this.nodeIndex);
163 WebInspector.HeapSnapshotEdgeIterator = function(edge)
168 WebInspector.HeapSnapshotEdgeIterator.prototype = {
200 WebInspector.HeapSnapshotRetainerEdge = function(snapshot, retainers, retainerIndex)
207 WebInspector.HeapSnapshotRetainerEdge.prototype =
    [all...]
DOMBreakpointsSidebarPane.js 31 WebInspector.DOMBreakpointsSidebarPane = function()
33 WebInspector.NativeBreakpointsSidebarPane.call(this, WebInspector.UIString("DOM Breakpoints"));
43 WebInspector.UIString("Subtree Modified"),
44 WebInspector.UIString("Attribute Modified"),
45 WebInspector.UIString("Node Removed")
48 WebInspector.UIString("Break on Subtree Modifications"),
49 WebInspector.UIString("Break on Attributes Modifications"),
50 WebInspector.UIString("Break on Node Removal")
54 WebInspector.DOMBreakpointsSidebarPane.prototype =
    [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...]
KeyboardShortcut.js 30 WebInspector.KeyboardShortcut = function()
38 WebInspector.KeyboardShortcut.Modifiers = {
47 return WebInspector.isMac() ? this.Meta : this.Ctrl;
51 WebInspector.KeyboardShortcut.Keys = {
95 WebInspector.KeyboardShortcut.makeKey = function(keyCode, optModifiers)
99 var modifiers = WebInspector.KeyboardShortcut.Modifiers.None;
102 return WebInspector.KeyboardShortcut._makeKeyFromCodeAndModifiers(keyCode, modifiers);
105 WebInspector.KeyboardShortcut.makeKeyFromEvent = function(keyboardEvent)
107 var modifiers = WebInspector.KeyboardShortcut.Modifiers.None;
109 modifiers |= WebInspector.KeyboardShortcut.Modifiers.Shift
    [all...]
ShortcutsHelp.js 31 WebInspector.ShortcutsHelp = function()
36 WebInspector.ShortcutsHelp.prototype = {
41 this._sections[name] = section = new WebInspector.ShortcutsSection(name);
48 this._helpScreen = new WebInspector.HelpScreen(WebInspector.UIString("Keyboard Shortcuts"));
89 WebInspector.shortcutsHelp = new WebInspector.ShortcutsHelp();
91 WebInspector.ShortcutsSection = function(name)
95 this.order = ++WebInspector.ShortcutsSection._sequenceNumber;
98 WebInspector.ShortcutsSection._sequenceNumber = 0
    [all...]
SourceCSSTokenizer.js 44 WebInspector.SourceCSSTokenizer = function()
46 WebInspector.SourceTokenizer.call(this);
48 this._propertyKeywords = WebInspector.cssNameCompletions.keySet();
124 WebInspector.SourceCSSTokenizer.prototype = {
    [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...]
AuditRules.js 31 WebInspector.AuditRules.IPAddressRegexp = /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/;
33 WebInspector.AuditRules.CacheableResponseCodes =
45 WebInspector.AuditRules.getDomainToResourcesMap = function(resources, types, needFullResources)
66 WebInspector.AuditRules.GzipRule = function()
68 WebInspector.AuditRule.call(this, "network-gzip", "Enable gzip compression");
71 WebInspector.AuditRules.GzipRule.prototype = {
91 summary.addChild(String.sprintf("%s could save ~%s", WebInspector.AuditRuleResult.linkifyDisplayName(resource.url), Number.bytesToString(savings)));
112 return WebInspector.Resource.Type.isTextType(resource.type) && resource.domain && resource.resourceSize !== undefined && resource.resourceSize > 150;
116 WebInspector.AuditRules.GzipRule.prototype.__proto__ = WebInspector.AuditRule.prototype
    [all...]
AuditCategories.js 31 WebInspector.AuditCategories.PagePerformance = function() {
32 WebInspector.AuditCategory.call(this, WebInspector.AuditCategories.PagePerformance.AuditCategoryName);
35 WebInspector.AuditCategories.PagePerformance.AuditCategoryName = "Web Page Performance";
37 WebInspector.AuditCategories.PagePerformance.prototype = {
40 this.addRule(new WebInspector.AuditRules.UnusedCssRule(), WebInspector.AuditRule.Severity.Warning);
41 this.addRule(new WebInspector.AuditRules.CssInHeadRule(), WebInspector.AuditRule.Severity.Severe);
42 this.addRule(new WebInspector.AuditRules.StylesScriptsOrderRule(), WebInspector.AuditRule.Severity.Severe)
    [all...]
CookieParser.js 38 WebInspector.CookieParser = function()
42 WebInspector.CookieParser.prototype = {
57 this._addCookie(kv, WebInspector.Cookie.Type.Request);
72 this._addCookie(kv, WebInspector.Cookie.Type.Response);
137 this._lastCookie = keyValue.value ? new WebInspector.Cookie(keyValue.key, keyValue.value, type) :
138 new WebInspector.Cookie("", keyValue.key, type);
144 WebInspector.CookieParser.parseCookie = function(header)
146 return (new WebInspector.CookieParser()).parseCookie(header);
149 WebInspector.CookieParser.parseSetCookie = function(header)
151 return (new WebInspector.CookieParser()).parseSetCookie(header)
    [all...]
TabbedPane.js 31 WebInspector.TabbedPane = function(element)
40 WebInspector.TabbedPane.prototype = {
86 WebInspector.TabbedPane.prototype.__proto__ = WebInspector.Object.prototype;
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...]
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);
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...]
SourceFile.js 31 WebInspector.SourceFile = function(id, script, contentChangedDelegate)
36 this._resource = WebInspector.networkManager.inflightResourceForURL(script.sourceURL) || WebInspector.resourceForURL(script.sourceURL);
49 WebInspector.SourceFile.prototype = {
80 this._mapping = new WebInspector.SourceMapping(this._scripts);
140 if (resource.type === WebInspector.Resource.Type.Script)
237 WebInspector.FormattedSourceFile = function(sourceFileId, script, contentChangedDelegate, formatter)
239 WebInspector.SourceFile.call(this, sourceFileId, script, contentChangedDelegate);
243 WebInspector.FormattedSourceFile.prototype = {
257 this._mapping = new WebInspector.FormattedSourceMapping(this._scripts, text, formattedText, mapping)
    [all...]
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...]
CSSKeywordCompletions.js 31 WebInspector.CSSKeywordCompletions = {
38 acceptedKeywords = acceptedKeywords.concat(WebInspector.CSSKeywordCompletions._colors);
39 if (propertyName in WebInspector.StylesSidebarPane.InheritedProperties)
41 return new WebInspector.CSSCompletions(acceptedKeywords, true);
45 WebInspector.CSSKeywordCompletions._colors = [
66 WebInspector.CSSKeywordCompletions._colorAwareProperties = [
73 WebInspector.CSSKeywordCompletions._propertyKeywordMap = {
CookieItemsView.js 30 WebInspector.CookieItemsView = function(treeElement, cookieDomain)
32 WebInspector.View.call(this);
36 this._deleteButton = new WebInspector.StatusBarButton(WebInspector.UIString("Delete"), "delete-storage-status-bar-item");
40 this._refreshButton = new WebInspector.StatusBarButton(WebInspector.UIString("Refresh"), "refresh-storage-status-bar-item");
48 this._emptyMsgElement.textContent = WebInspector.UIString("This site has no cookies.");
52 WebInspector.CookieItemsView.prototype = {
60 WebInspector.View.prototype.show.call(this, parentElement);
66 WebInspector.View.prototype.hide.call(this)
    [all...]
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 = {
TimelineAgent.js 31 WebInspector.TimelineAgent = function() {
36 WebInspector.TimelineAgent.RecordType = {
TextEditorHighlighter.js 32 WebInspector.TextEditorHighlighter = function(textModel, damageCallback)
35 this._tokenizer = WebInspector.SourceTokenizer.Registry.getInstance().getTokenizer("text/html");
40 WebInspector.TextEditorHighlighter.prototype = {
43 var tokenizer = WebInspector.SourceTokenizer.Registry.getInstance().getTokenizer(mimeType);
NetworkPanel.js 31 WebInspector.NetworkPanel = function()
33 WebInspector.Panel.call(this, "network");
48 this._categories = WebInspector.resourceCategories;
71 if (!WebInspector.settings.resourcesLargeRows)
72 this._setLargerResources(WebInspector.settings.resourcesLargeRows);
74 this._popoverHelper = new WebInspector.PopoverHelper(this.element, this._getPopoverAnchor.bind(this), this._showPopover.bind(this), true);
78 this.calculator = new WebInspector.NetworkTransferTimeCalculator();
83 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.ResourceStarted, this._onResourceStarted, this);
84 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.ResourceUpdated, this._onRe (…)
    [all...]
CallStackSidebarPane.js 26 WebInspector.CallStackSidebarPane = function(model)
28 WebInspector.SidebarPane.call(this, WebInspector.UIString("Call Stack"));
34 WebInspector.CallStackSidebarPane.prototype = {
44 infoElement.textContent = WebInspector.UIString("Not Paused");
51 var title = callFrame.functionName || WebInspector.UIString("(anonymous function)");
55 subtitle = WebInspector.displayNameForURL(callFrame.url);
57 subtitle = WebInspector.UIString("(internal script)");
59 var placard = new WebInspector.Placard(title, subtitle);
68 placard.subtitle = WebInspector.UIString("line %d", lineNumber + 1)
    [all...]
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...]
  /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
WebInspectorShims.js 29 var WebInspector = {
53 var originalGetter = WebInspector.ProfileDataGridNode.prototype.__lookupGetter__("data");
54 WebInspector.ProfileDataGridNode.prototype.__defineGetter__("data", function() {

Completed in 586 milliseconds

1 2 34 5