HomeSort by relevance Sort by last modified time
    Searched refs:WebInspector (Results 1 - 25 of 152) sorted by null

1 2 3 4 5 6 7

  /external/webkit/Source/WebCore/inspector/front-end/
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...]
ExtensionRegistryStub.js 33 WebInspector.InspectorExtensionRegistryStub = function()
37 WebInspector.InspectorExtensionRegistryStub.prototype = {
43 InspectorExtensionRegistry = new WebInspector.InspectorExtensionRegistryStub();
ExtensionCommon.js 31 WebInspector.commonExtensionSymbols = function(apiPrivate)
44 WebInspector.extensionAPI = {};
46 WebInspector.commonExtensionSymbols(WebInspector.extensionAPI);
NetworkItemView.js 31 WebInspector.NetworkItemView = function(resource)
33 WebInspector.View.call(this);
37 this._headersView = new WebInspector.ResourceHeadersView(resource);
39 var contentView = WebInspector.ResourceView.resourceViewForResource(resource);
41 this._tabbedPane = new WebInspector.TabbedPane(this.element);
42 this._tabbedPane.appendTab("headers", WebInspector.UIString("Headers"), this._headersView);
47 this._tabbedPane.appendTab("content", WebInspector.UIString("Content"), contentView);
50 if (resource.type === WebInspector.Resource.Type.XHR && resource.content) {
51 var parsedJSON = WebInspector.ResourceJSONView.parseJSON(resource.content);
53 var jsonView = new WebInspector.ResourceJSONView(resource, parsedJSON)
    [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 = {
ResourceJSONView.js 31 WebInspector.ResourceJSONView = function(resource, parsedJSON)
33 WebInspector.ResourceView.call(this, resource);
38 WebInspector.ResourceJSONView.parseJSON = function(text)
52 WebInspector.ResourceJSONView.prototype = {
60 WebInspector.ResourceView.prototype.show.call(this, parentElement);
70 var obj = WebInspector.RemoteObject.fromLocalObject(this._parsedJSON);
71 this.element.appendChild(new WebInspector.ObjectPropertiesSection(obj, obj.description, null, true).element);
75 WebInspector.ResourceJSONView.prototype.__proto__ = WebInspector.ResourceView.prototype;
ConsolePanel.js 29 WebInspector.ConsolePanel = function()
31 WebInspector.Panel.call(this, "console");
34 WebInspector.ConsolePanel.prototype = {
37 return WebInspector.UIString("Console");
42 WebInspector.Panel.prototype.show.call(this);
44 this._previousConsoleState = WebInspector.drawer.state;
45 WebInspector.drawer.enterPanelMode();
46 WebInspector.showConsole();
64 WebInspector.Panel.prototype.hide.call(this);
66 if (this._previousConsoleState === WebInspector.Drawer.State.Hidden
    [all...]
ExtensionPanel.js 31 WebInspector.ExtensionPanel = function(id, label, iconURL, options)
35 WebInspector.Panel.call(this, id);
38 WebInspector.ExtensionPanel.prototype = {
52 WebInspector.extensionServer.notifySearchAction(this._id, "cancelSearch");
53 WebInspector.Panel.prototype.searchCanceled.apply(this, arguments);
58 WebInspector.extensionServer.notifySearchAction(this._id, "performSearch", query);
59 WebInspector.Panel.prototype.performSearch.apply(this, arguments);
64 WebInspector.extensionServer.notifySearchAction(this._id, "nextSearchResult");
65 WebInspector.Panel.prototype.jumpToNextSearchResult.call(this);
70 WebInspector.extensionServer.notifySearchAction(this._id, "previousSearchResult")
    [all...]
ResourceCategory.js 29 WebInspector.ResourceCategory = function(name, title, color)
36 WebInspector.ResourceCategory.prototype = {
PropertiesSection.js 30 WebInspector.PropertiesSection = function(title, subtitle)
32 WebInspector.Section.call(this, title, subtitle);
44 WebInspector.PropertiesSection.prototype.__proto__ = WebInspector.Section.prototype;
TopDownProfileDataGridTree.js 26 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.TopDownProfileDataGridTree.prototype =
    [all...]
ResourceView.js 30 WebInspector.ResourceView = function(resource)
32 WebInspector.View.call(this);
37 WebInspector.ResourceView.prototype = {
44 WebInspector.ResourceView.prototype.__proto__ = WebInspector.View.prototype;
46 WebInspector.ResourceView.createResourceView = function(resource)
49 case WebInspector.resourceCategories.documents:
50 case WebInspector.resourceCategories.scripts:
51 case WebInspector.resourceCategories.xhr:
52 case WebInspector.resourceCategories.stylesheets
    [all...]
DatabaseTableView.js 26 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.resources.dataGridForResult(columnNames, values);
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.DatabaseTableView.prototype.__proto__ = WebInspector.View.prototype
    [all...]
ResourceCookiesView.js 31 WebInspector.ResourceCookiesView = function(resource)
33 WebInspector.View.call(this);
42 WebInspector.ResourceCookiesView.prototype = {
49 this._emptyMsgElement.textContent = WebInspector.UIString("This request has no cookies.");
52 WebInspector.View.prototype.show.call(this, parentElement);
60 this._cookiesTable = new WebInspector.CookiesTable(null, true, true);
61 this._cookiesTable.addCookiesFolder(WebInspector.UIString("Request Cookies"), this._resource.requestCookies);
62 this._cookiesTable.addCookiesFolder(WebInspector.UIString("Response Cookies"), this._resource.responseCookies);
66 WebInspector.View.prototype.show.call(this, parentElement);
71 WebInspector.ResourceCookiesView.prototype.__proto__ = WebInspector.View.prototype
    [all...]
AuditsPanel.js 31 WebInspector.AuditsPanel = function()
33 WebInspector.Panel.call(this, "audits");
36 this.auditsTreeElement = new WebInspector.SidebarSectionTreeElement("", {}, true);
41 this.auditsItemTreeElement = new WebInspector.AuditsSidebarTreeElement();
44 this.auditResultsTreeElement = new WebInspector.SidebarSectionTreeElement(WebInspector.UIString("RESULTS"), {}, true);
48 this.clearResultsButton = new WebInspector.StatusBarButton(WebInspector.UIString("Clear audit results."), "clear-status-bar-item");
57 this._launcherView = new WebInspector.AuditLauncherView(this.initiateAudit.bind(this));
62 WebInspector.AuditsPanel.prototype =
    [all...]
inspector.js 51 var WebInspector = {
79 return WebInspector.PlatformFlavor.WindowsVista;
84 return WebInspector.PlatformFlavor.MacSnowLeopard;
87 return WebInspector.PlatformFlavor.MacTiger;
89 return WebInspector.PlatformFlavor.MacLeopard;
92 return WebInspector.PlatformFlavor.MacSnowLeopard;
164 WebInspector.searchController.activePanelChanged();
166 for (var panelName in WebInspector.panels) {
167 if (WebInspector.panels[panelName] === x) {
168 WebInspector.settings.lastActivePanel = panelName
    [all...]
ExtensionAuditCategory.js 31 WebInspector.ExtensionAuditCategory = function(id, displayName, ruleCount)
38 WebInspector.ExtensionAuditCategory.prototype = {
57 new WebInspector.ExtensionAuditCategoryResults(this, callback);
61 WebInspector.ExtensionAuditCategoryResults = function(category, callback)
67 this.id = category.id + "-" + ++WebInspector.ExtensionAuditCategoryResults._lastId;
68 WebInspector.extensionServer.startAuditRun(category, this);
71 WebInspector.ExtensionAuditCategoryResults.prototype = {
85 var result = new WebInspector.AuditRuleResult(displayName);
107 WebInspector.extensionServer.stopAuditRun(this);
111 WebInspector.ExtensionAuditCategoryResults._lastId = 0
    [all...]
SourceJavaScriptTokenizer.re2js 43 WebInspector.SourceJavaScriptTokenizer = function()
45 WebInspector.SourceTokenizer.call(this);
74 WebInspector.SourceJavaScriptTokenizer.prototype = {
178 WebInspector.SourceJavaScriptTokenizer.prototype.__proto__ = WebInspector.SourceTokenizer.prototype;
SourceTokenizer.js 32 WebInspector.SourceTokenizer = function()
36 WebInspector.SourceTokenizer.prototype = {
68 WebInspector.SourceTokenizer.Registry = function() {
77 WebInspector.SourceTokenizer.Registry.getInstance = function()
79 if (!WebInspector.SourceTokenizer.Registry._instance)
80 WebInspector.SourceTokenizer.Registry._instance = new WebInspector.SourceTokenizer.Registry();
81 return WebInspector.SourceTokenizer.Registry._instance;
84 WebInspector.SourceTokenizer.Registry.prototype = {
92 tokenizer = new WebInspector[tokenizerClass]()
    [all...]
WorkersSidebarPane.js 31 WebInspector.WorkersSidebarPane = function()
33 WebInspector.SidebarPane.call(this, WebInspector.UIString("Workers"));
37 this._enableWorkersCheckbox = new WebInspector.Checkbox(
38 WebInspector.UIString("Debug"),
40 WebInspector.UIString("Allow debugging workers. Enabling this option will replace native workers with the iframe-based JavaScript implementation"));
53 WebInspector.WorkersSidebarPane.prototype = {
58 var worker = new WebInspector.Worker(id, url, isShared);
61 var title = WebInspector.linkifyURL(url, WebInspector.displayNameForURL(url), "worker-item", true, url)
    [all...]
ScopeChainSidebarPane.js 26 WebInspector.ScopeChainSidebarPane = function()
28 WebInspector.SidebarPane.call(this, WebInspector.UIString("Scope Variables"));
34 WebInspector.ScopeChainSidebarPane.prototype = {
42 infoElement.textContent = WebInspector.UIString("Not Paused");
71 title = WebInspector.UIString("Local");
72 emptyPlaceholder = WebInspector.UIString("No Variables");
75 extraProperties = [ new WebInspector.RemoteObjectProperty("this", WebInspector.RemoteObject.fromPayload(scope.this)) ];
78 title = WebInspector.UIString("Closure")
    [all...]
Database.js 29 WebInspector.Database = function(id, domain, name, version)
37 WebInspector.Database.prototype = {
75 return WebInspector.Resource.prototype.__lookupGetter__("displayDomain").call(this);
97 onError(WebInspector.UIString("Database not found."));
100 WebInspector.DatabaseDispatcher._callbacks[transactionId] = {"onSuccess": onSuccess, "onError": onError};
106 WebInspector.DatabaseDispatcher = function()
110 WebInspector.DatabaseDispatcher._callbacks = {};
112 WebInspector.DatabaseDispatcher.prototype = {
115 var database = new WebInspector.Database(
120 WebInspector.panels.resources.addDatabase(database)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/js/
DevTools.js 35 * WebInspector functionality while it is getting upstreamed into WebCore.
59 WebInspector.setAttachedWindow(WebInspector.queryParamsObject.docked === "true");
60 if (WebInspector.queryParamsObject.toolbar_color && WebInspector.queryParamsObject.text_color)
61 WebInspector.setToolbarColors(WebInspector.queryParamsObject.toolbar_color, WebInspector.queryParamsObject.text_color);
69 var oldShow = WebInspector.ProfilesPanel.prototype.show;
70 WebInspector.ProfilesPanel.prototype.show = function(
    [all...]
  /external/webkit/Source/WebKit/mac/WebInspector/
WebInspectorPrivate.h 29 // This header contains the WebInspector SPI.
31 #import <WebKit/WebInspector.h>
35 @interface WebInspector (WebPrivate)
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebInspector.cpp 27 #include "WebInspector.h"
42 PassRefPtr<WebInspector> WebInspector::create(WebPage* page)
44 return adoptRef(new WebInspector(page));
47 WebInspector::WebInspector(WebPage* page)
54 WebPage* WebInspector::createInspectorPage()
79 void WebInspector::didLoadInspectorPage()
84 void WebInspector::didClose()
89 void WebInspector::inspectedURLChanged(const String& urlString
    [all...]

Completed in 178 milliseconds

1 2 3 4 5 6 7