Changeset 54547 in webkit


Ignore:
Timestamp:
Feb 9, 2010 7:15:08 AM (14 years ago)
Author:
yurys@chromium.org
Message:

2010-02-09 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

Upstream JavaScript part of DevTools WebKit API implementation(now
with the added files).

https://bugs.webkit.org/show_bug.cgi?id=34744

Location:
trunk/WebKit/chromium
Files:
11 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r54546 r54547  
    33        Reviewed by Pavel Feldman.
    44
    5         Upstream JavaScript part of DevTools WebKit API implementation
     5        Upstream JavaScript part of DevTools WebKit API implementation(now
     6        with the added files).
    67
    78        https://bugs.webkit.org/show_bug.cgi?id=34744
     
    377378        (.uiTests.runTest):
    378379
     3802010-02-09  Yury Semikhatsky  <yurys@chromium.org>
     381
     382        Reviewed by Pavel Feldman.
     383
     384        Upstream JavaScript part of DevTools WebKit API implementation
     385
     386        https://bugs.webkit.org/show_bug.cgi?id=34744
     387
     388        * WebKit.gypi: Added.
     389        * src/js/DebuggerAgent.js: Added.
     390        (devtools.DebuggerAgent):
     391        (devtools.DebuggerAgent.prototype.reset):
     392        (devtools.DebuggerAgent.prototype.initUI):
     393        (devtools.DebuggerAgent.prototype.resolveScriptSource.this.requestSeqToCallback_.cmd.getSequenceNumber):
     394        (devtools.DebuggerAgent.prototype.resolveScriptSource):
     395        (devtools.DebuggerAgent.prototype.pauseExecution):
     396        (devtools.DebuggerAgent.prototype.addBreakpoint):
     397        (devtools.DebuggerAgent.prototype.removeBreakpoint):
     398        (devtools.DebuggerAgent.prototype.updateBreakpoint):
     399        (devtools.DebuggerAgent.prototype.stepIntoStatement):
     400        (devtools.DebuggerAgent.prototype.stepOutOfFunction):
     401        (devtools.DebuggerAgent.prototype.stepOverStatement):
     402        (devtools.DebuggerAgent.prototype.resumeExecution):
     403        (devtools.DebuggerAgent.prototype.createExceptionMessage_):
     404        (devtools.DebuggerAgent.prototype.showPendingExceptionMessage_):
     405        (devtools.DebuggerAgent.prototype.clearExceptionMessage_):
     406        (devtools.DebuggerAgent.prototype.pauseOnExceptions):
     407        (devtools.DebuggerAgent.prototype.setPauseOnExceptions):
     408        (devtools.DebuggerAgent.prototype.requestEvaluate):
     409        (devtools.DebuggerAgent.prototype.resolveChildren):
     410        (devtools.DebuggerAgent.prototype.resolveScope.this.requestSeqToCallback_.cmd.getSequenceNumber):
     411        (devtools.DebuggerAgent.prototype.resolveScope):
     412        (devtools.DebuggerAgent.prototype.resolveFrameVariables_.scopeResponseHandler):
     413        (devtools.DebuggerAgent.prototype.resolveFrameVariables_):
     414        (devtools.DebuggerAgent.prototype.resolveCompletionsOnFrame):
     415        (devtools.DebuggerAgent.prototype.getScriptContextType):
     416        (devtools.DebuggerAgent.prototype.requestClearBreakpoint_):
     417        (devtools.DebuggerAgent.prototype.requestChangeBreakpoint_):
     418        (devtools.DebuggerAgent.prototype.requestBacktrace_):
     419        (devtools.DebuggerAgent.sendCommand_):
     420        (devtools.DebuggerAgent.prototype.stepCommand_):
     421        (devtools.DebuggerAgent.prototype.requestLookup_):
     422        (devtools.DebuggerAgent.prototype.setContextId_.this.requestSeqToCallback_.cmd.getSequenceNumber):
     423        (devtools.DebuggerAgent.prototype.setContextId_):
     424        (devtools.DebuggerAgent.prototype.handleDebuggerOutput_):
     425        (devtools.DebuggerAgent.prototype.handleBreakEvent_):
     426        (devtools.DebuggerAgent.prototype.handleExceptionEvent_):
     427        (devtools.DebuggerAgent.prototype.handleScriptsResponse_):
     428        (devtools.DebuggerAgent.prototype.isScriptFromInspectedContext_):
     429        (devtools.DebuggerAgent.prototype.handleSetBreakpointResponse_):
     430        (devtools.DebuggerAgent.prototype.handleAfterCompileEvent_):
     431        (devtools.DebuggerAgent.prototype.addScriptInfo_):
     432        (devtools.DebuggerAgent.prototype.handleClearBreakpointResponse_):
     433        (devtools.DebuggerAgent.prototype.handleBacktraceResponse_):
     434        (devtools.DebuggerAgent.prototype.doHandleBacktraceResponse_):
     435        (devtools.DebuggerAgent.prototype.evaluateInCallFrame):
     436        (devtools.DebuggerAgent.prototype.invokeCallbackForResponse_):
     437        (devtools.DebuggerAgent.prototype.formatCallFrame_):
     438        (devtools.DebuggerAgent.formatObjectProperties_):
     439        (devtools.DebuggerAgent.propertiesToProxies_):
     440        (devtools.DebuggerAgent.formatObjectProxy_):
     441        (devtools.DebuggerAgent.webkitToV8LineNumber_):
     442        (devtools.DebuggerAgent.v8ToWwebkitLineNumber_):
     443        (devtools.ScriptInfo):
     444        (devtools.ScriptInfo.prototype.getLineOffset):
     445        (devtools.ScriptInfo.prototype.getContextType):
     446        (devtools.ScriptInfo.prototype.getUrl):
     447        (devtools.ScriptInfo.prototype.isUnresolved):
     448        (devtools.ScriptInfo.prototype.getBreakpointInfo):
     449        (devtools.ScriptInfo.prototype.addBreakpointInfo):
     450        (devtools.ScriptInfo.prototype.removeBreakpointInfo):
     451        (devtools.BreakpointInfo):
     452        (devtools.BreakpointInfo.prototype.getLine):
     453        (devtools.BreakpointInfo.prototype.getV8Id):
     454        (devtools.BreakpointInfo.prototype.setV8Id):
     455        (devtools.BreakpointInfo.prototype.markAsRemoved):
     456        (devtools.BreakpointInfo.prototype.isRemoved):
     457        (devtools.CallFrame):
     458        (devtools.CallFrame.prototype.evaluate_):
     459        (devtools.DebugCommand):
     460        (devtools.DebugCommand.prototype.getSequenceNumber):
     461        (devtools.DebugCommand.prototype.toJSONProtocol):
     462        (devtools.DebuggerMessage):
     463        (devtools.DebuggerMessage.prototype.getType):
     464        (devtools.DebuggerMessage.prototype.getEvent):
     465        (devtools.DebuggerMessage.prototype.getCommand):
     466        (devtools.DebuggerMessage.prototype.getRequestSeq):
     467        (devtools.DebuggerMessage.prototype.isRunning):
     468        (devtools.DebuggerMessage.prototype.isSuccess):
     469        (devtools.DebuggerMessage.prototype.getMessage):
     470        (devtools.DebuggerMessage.prototype.getBody):
     471        (devtools.DebuggerMessage.prototype.lookup):
     472        * src/js/DevTools.js: Added.
     473        (devtools.dispatch):
     474        (devtools.ToolsAgent):
     475        (devtools.ToolsAgent.prototype.reset):
     476        (devtools.ToolsAgent.prototype.evaluateJavaScript):
     477        (devtools.ToolsAgent.prototype.getDebuggerAgent):
     478        (devtools.ToolsAgent.prototype.getProfilerAgent):
     479        (devtools.ToolsAgent.prototype.frameNavigate_):
     480        (devtools.ToolsAgent.prototype.dispatchOnClient_):
     481        (devtools.ToolsAgent.prototype.evaluate):
     482        (WebInspector.setResourcesPanelEnabled):
     483        (debugPrint):
     484        (devtools):
     485        (WebInspector.loaded):
     486        ():
     487        (WebInspector.ScriptView.prototype.setupSourceFrameIfNeeded):
     488        (WebInspector.ScriptView.prototype.didResolveScriptSource_):
     489        (WebInspector.UnresolvedPropertyValue):
     490        (WebInspector.UIString):
     491        (WebInspector.resourceTrackingWasEnabled):
     492        (WebInspector.resourceTrackingWasDisabled):
     493        (WebInspector.TestController.prototype.runAfterPendingDispatches):
     494        (WebInspector.queuesAreEmpty):
     495        (WebInspector.pausedScript):
     496        * src/js/DevToolsHostStub.js: Added.
     497        (.RemoteDebuggerAgentStub):
     498        (.RemoteDebuggerAgentStub.prototype.getContextId):
     499        (.RemoteProfilerAgentStub):
     500        (.RemoteProfilerAgentStub.prototype.getActiveProfilerModules):
     501        (.RemoteProfilerAgentStub.prototype.getLogLines):
     502        (.RemoteToolsAgentStub):
     503        (.RemoteToolsAgentStub.prototype.dispatchOnInjectedScript):
     504        (.RemoteToolsAgentStub.prototype.dispatchOnInspectorController):
     505        (.RemoteToolsAgentStub.prototype.executeVoidJavaScript):
     506        (.ProfilerStubHelper):
     507        (.ProfilerStubHelper.GetInstance):
     508        (.ProfilerStubHelper.prototype.StopProfiling):
     509        (.ProfilerStubHelper.prototype.StartProfiling):
     510        (.ProfilerStubHelper.prototype.getActiveProfilerModules):
     511        (.ProfilerStubHelper.prototype.getLogLines):
     512        (.RemoteDebuggerCommandExecutorStub):
     513        (.RemoteDebuggerCommandExecutorStub.prototype.DebuggerCommand):
     514        (.RemoteDebuggerCommandExecutorStub.prototype.DebuggerPauseScript):
     515        (.RemoteDebuggerCommandExecutorStub.prototype.sendResponse_):
     516        (.DevToolsHostStub):
     517        (.DevToolsHostStub.prototype.reset):
     518        (.DevToolsHostStub.prototype.setting):
     519        (.DevToolsHostStub.prototype.setSetting):
     520        * src/js/HeapProfilerPanel.js: Added.
     521        (WebInspector.ProfilesPanel.prototype.addSnapshot):
     522        (WebInspector.HeapSnapshotView):
     523        (WebInspector.HeapSnapshotView.prototype.get statusBarItems):
     524        (WebInspector.HeapSnapshotView.prototype.get profile):
     525        (WebInspector.HeapSnapshotView.prototype.set profile):
     526        (WebInspector.HeapSnapshotView.prototype.show):
     527        (WebInspector.HeapSnapshotView.prototype.hide):
     528        (WebInspector.HeapSnapshotView.prototype.resize):
     529        (WebInspector.HeapSnapshotView.prototype.refresh):
     530        (WebInspector.HeapSnapshotView.prototype.refreshShowAsPercents):
     531        (WebInspector.HeapSnapshotView.prototype._deleteSearchMatchedFlags):
     532        (WebInspector.HeapSnapshotView.prototype.searchCanceled):
     533        (WebInspector.HeapSnapshotView.prototype.performSearch):
     534        (WebInspector.HeapSnapshotView.prototype.jumpToFirstSearchResult.WebInspector.CPUProfileView.prototype.jumpToFirstSearchResult.jumpToLastSearchResult.WebInspector.CPUProfileView.prototype.jumpToLastSearchResult.jumpToNextSearchResult.WebInspector.CPUProfileView.prototype.jumpToNextSearchResult.jumpToPreviousSearchResult.WebInspector.CPUProfileView.prototype.jumpToPreviousSearchResult.showingFirstSearchResult.WebInspector.CPUProfileView.prototype.showingFirstSearchResult.showingLastSearchResult.WebInspector.CPUProfileView.prototype.showingLastSearchResult._jumpToSearchResult.WebInspector.CPUProfileView.prototype._jumpToSearchResult.refreshVisibleData):
     535        (WebInspector.HeapSnapshotView.prototype._changeBase):
     536        (WebInspector.HeapSnapshotView.prototype._createSnapshotDataGridList):
     537        (WebInspector.HeapSnapshotView.prototype._mouseDownInDataGrid):
     538        (WebInspector.HeapSnapshotView.prototype.get _isShowingAsPercent):
     539        (WebInspector.HeapSnapshotView.prototype._percentClicked):
     540        (WebInspector.HeapSnapshotView.prototype._resetDataGridList):
     541        (WebInspector.HeapSnapshotView.prototype._sortData):
     542        (WebInspector.HeapSnapshotView.prototype._updateBaseOptions):
     543        (WebInspector.HeapSnapshotView.prototype._updatePercentButton):
     544        (WebInspector.HeapSnapshotView.prototype._updateSummaryGraph):
     545        (WebInspector.HeapSnapshotView.SearchHelper.operations.LESS):
     546        (WebInspector.HeapSnapshotView.SearchHelper.operations.LESS_OR_EQUAL):
     547        (WebInspector.HeapSnapshotView.SearchHelper.operations.EQUAL):
     548        (WebInspector.HeapSnapshotView.SearchHelper.operations.GREATER_OR_EQUAL):
     549        (WebInspector.HeapSnapshotView.SearchHelper.operations.GREATER):
     550        (WebInspector.HeapSnapshotView.SearchHelper.parseOperationAndNumber):
     551        (WebInspector.HeapSummaryCalculator):
     552        (WebInspector.HeapSummaryCalculator.prototype.computeSummaryValues):
     553        (WebInspector.HeapSummaryCalculator.prototype.formatValue):
     554        (WebInspector.HeapSummaryCalculator.prototype.get showAsPercent):
     555        (WebInspector.HeapSummaryCalculator.prototype.set showAsPercent):
     556        (WebInspector.HeapSummaryCountCalculator):
     557        (WebInspector.HeapSummaryCountCalculator.prototype._highFromLow):
     558        (WebInspector.HeapSummaryCountCalculator.prototype._valueToString):
     559        (WebInspector.HeapSummarySizeCalculator):
     560        (WebInspector.HeapSummarySizeCalculator.prototype._highFromLow):
     561        (WebInspector.HeapSnapshotSidebarTreeElement):
     562        (WebInspector.HeapSnapshotSidebarTreeElement.prototype.get mainTitle):
     563        (WebInspector.HeapSnapshotSidebarTreeElement.prototype.set mainTitle):
     564        (WebInspector.HeapSnapshotDataGridNodeWithRetainers):
     565        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.get _hasRetainers):
     566        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.get _parent):
     567        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype._populate.if):
     568        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype._populate):
     569        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.produceDiff):
     570        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.sort):
     571        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.signForDelta):
     572        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.showDeltaAsPercent):
     573        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.getTotalCount):
     574        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.getTotalSize):
     575        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.get countPercent):
     576        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.get sizePercent):
     577        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.get countDeltaPercent):
     578        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.get sizeDeltaPercent):
     579        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.get data):
     580        (WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.createCell):
     581        (WebInspector.HeapSnapshotDataGridNode):
     582        (WebInspector.HeapSnapshotDataGridList):
     583        (WebInspector.HeapSnapshotDataGridList.prototype.appendChild):
     584        (WebInspector.HeapSnapshotDataGridList.prototype.insertChild):
     585        (WebInspector.HeapSnapshotDataGridList.prototype.removeChildren):
     586        (WebInspector.HeapSnapshotDataGridList.prototype.populateChildren):
     587        (WebInspector.HeapSnapshotDataGridList.propertyComparator.comparator):
     588        (WebInspector.HeapSnapshotDataGridList.propertyComparator):
     589        (WebInspector.HeapSnapshotDataGridRetainerNode):
     590        (WebInspector.HeapSnapshotDataGridRetainerNode.prototype.get sizePercent):
     591        (WebInspector.HeapSnapshotDataGridRetainerNode.prototype.get sizeDeltaPercent):
     592        (WebInspector.HeapSnapshotDataGridRetainerNode.prototype._calculateRetainers):
     593        (WebInspector.HeapSnapshotProfileType):
     594        (WebInspector.HeapSnapshotProfileType.prototype.get buttonTooltip):
     595        (WebInspector.HeapSnapshotProfileType.prototype.get buttonStyle):
     596        (WebInspector.HeapSnapshotProfileType.prototype.buttonClicked):
     597        (WebInspector.HeapSnapshotProfileType.prototype.get welcomeMessage):
     598        (WebInspector.HeapSnapshotProfileType.prototype.createSidebarTreeElementForProfile):
     599        (WebInspector.HeapSnapshotProfileType.prototype.createView):
     600        ():
     601        * src/js/InjectDispatch.js: Added.
     602        (InspectorControllerDispatcher.dispatch):
     603        (ApuAgentDispatcher.dispatchToApu):
     604        (dispatch):
     605        (devtools):
     606        * src/js/InspectorControllerImpl.js: Added.
     607        (devtools.InspectorBackendImpl):
     608        (devtools.InspectorBackendImpl.prototype.toggleNodeSearch):
     609        (devtools.InspectorBackendImpl.prototype.debuggerEnabled):
     610        (devtools.InspectorBackendImpl.prototype.profilerEnabled):
     611        (devtools.InspectorBackendImpl.prototype.addBreakpoint):
     612        (devtools.InspectorBackendImpl.prototype.removeBreakpoint):
     613        (devtools.InspectorBackendImpl.prototype.updateBreakpoint):
     614        (devtools.InspectorBackendImpl.prototype.pauseInDebugger):
     615        (devtools.InspectorBackendImpl.prototype.resumeDebugger):
     616        (devtools.InspectorBackendImpl.prototype.stepIntoStatementInDebugger):
     617        (devtools.InspectorBackendImpl.prototype.stepOutOfFunctionInDebugger):
     618        (devtools.InspectorBackendImpl.prototype.stepOverStatementInDebugger):
     619        (devtools.InspectorBackendImpl.prototype.setPauseOnExceptionsState):
     620        (devtools.InspectorBackendImpl.prototype.pauseOnExceptionsState):
     621        (devtools.InspectorBackendImpl.prototype.pauseOnExceptions):
     622        (devtools.InspectorBackendImpl.prototype.setPauseOnExceptions):
     623        (devtools.InspectorBackendImpl.prototype.startProfiling):
     624        (devtools.InspectorBackendImpl.prototype.stopProfiling):
     625        (devtools.InspectorBackendImpl.prototype.getProfileHeaders):
     626        (devtools.InspectorBackendImpl.prototype.addFullProfile):
     627        (devtools.InspectorBackendImpl.prototype.getProfile):
     628        (devtools.InspectorBackendImpl.prototype.takeHeapSnapshot):
     629        (devtools.InspectorBackendImpl.prototype.dispatchOnInjectedScript):
     630        (devtools.InspectorBackendImpl.prototype.installInspectorControllerDelegate_):
     631        (devtools.InspectorBackendImpl.prototype.callInspectorController_):
     632        * src/js/ProfilerAgent.js: Added.
     633        (devtools.ProfilerAgent):
     634        (devtools.ProfilerAgent.prototype.setupProfilerProcessorCallbacks):
     635        (devtools.ProfilerAgent.prototype.initializeProfiling):
     636        (devtools.ProfilerAgent.prototype.startProfiling):
     637        (devtools.ProfilerAgent.prototype.stopProfiling):
     638        (devtools.ProfilerAgent.prototype.didGetActiveProfilerModules_):
     639        (devtools.ProfilerAgent.prototype.didGetLogLines_):
     640        * src/js/ProfilerProcessor.js: Added.
     641        (devtools.profiler.WebKitViewBuilder):
     642        (devtools.profiler.WebKitViewBuilder.prototype.createViewNode):
     643        (devtools.profiler.WebKitViewNode):
     644        (set get devtools.profiler.WebKitViewNode.prototype.initFuncInfo_):
     645        (devtools.profiler.JsProfile):
     646        (devtools.profiler.JsProfile.prototype.skipThisFunction):
     647        (devtools.profiler.Processor):
     648        (devtools.profiler.Processor.prototype.printError):
     649        (devtools.profiler.Processor.prototype.skipDispatch):
     650        (devtools.profiler.Processor.prototype.setCallbacks):
     651        (devtools.profiler.Processor.prototype.setNewProfileCallback):
     652        (devtools.profiler.Processor.prototype.processProfiler_.switch.break):
     653        (devtools.profiler.Processor.prototype.processProfiler_):
     654        (devtools.profiler.Processor.prototype.processCodeCreation_):
     655        (devtools.profiler.Processor.prototype.processCodeMove_):
     656        (devtools.profiler.Processor.prototype.processCodeDelete_):
     657        (devtools.profiler.Processor.prototype.processFunctionCreation_):
     658        (devtools.profiler.Processor.prototype.processFunctionMove_):
     659        (devtools.profiler.Processor.prototype.processFunctionDelete_):
     660        (devtools.profiler.Processor.prototype.processTick_):
     661        (devtools.profiler.Processor.prototype.processTickV2_):
     662        (devtools.profiler.Processor.prototype.processHeapSampleBegin_):
     663        (devtools.profiler.Processor.prototype.processHeapSampleStats_):
     664        (devtools.profiler.Processor.prototype.processHeapSampleItem_):
     665        (devtools.profiler.Processor.prototype.processHeapJsConsItem_):
     666        (devtools.profiler.Processor.prototype.processHeapJsRetItem_.mergeRetainers):
     667        (devtools.profiler.Processor.prototype.processHeapJsRetItem_):
     668        (devtools.profiler.Processor.prototype.processHeapSampleEnd_):
     669        (devtools.profiler.Processor.prototype.createProfileForView):
     670        * src/js/Tests.js: Added.
     671        (.TestSuite):
     672        (.TestSuite.prototype.fail):
     673        (.TestSuite.prototype.assertEquals):
     674        (.TestSuite.prototype.assertTrue):
     675        (.TestSuite.prototype.assertContains):
     676        (.TestSuite.prototype.takeControl):
     677        (.TestSuite.prototype.releaseControl):
     678        (.TestSuite.prototype.reportOk_):
     679        (.TestSuite.prototype.reportFailure_):
     680        (.TestSuite.prototype.runTest):
     681        (.TestSuite.prototype.showPanel):
     682        (.TestSuite.prototype.addSniffer.receiver.methodName):
     683        (.TestSuite.prototype.addSniffer):
     684        (.TestSuite.prototype.testHostIsPresent):
     685        (.TestSuite.prototype.testElementsTreeRoot):
     686        (.TestSuite.prototype.testMainResource):
     687        (.TestSuite.prototype.testResourceContentLength.this.addSniffer.):
     688        (.TestSuite.prototype.testResourceHeaders):
     689        (.TestSuite.prototype.testCachedResourceMimeType.this.addSniffer.):
     690        (.TestSuite.prototype.testCachedResourceMimeType):
     691        (.TestSuite.prototype.testProfilerTab):
     692        (.TestSuite.prototype.testScriptsTabIsPopulatedOnInspectedPageRefresh.waitUntilScriptIsParsed):
     693        (.TestSuite.prototype.testScriptsTabIsPopulatedOnInspectedPageRefresh.checkScriptsPanel):
     694        (.TestSuite.prototype.testScriptsTabIsPopulatedOnInspectedPageRefresh):
     695        (.TestSuite.prototype.testNoScriptDuplicatesOnPanelSwitch.switchToElementsTab):
     696        (.TestSuite.prototype.testNoScriptDuplicatesOnPanelSwitch.switchToScriptsTab):
     697        (.TestSuite.prototype.testNoScriptDuplicatesOnPanelSwitch.checkScriptsPanel):
     698        (.TestSuite.prototype.testNoScriptDuplicatesOnPanelSwitch.checkNoDuplicates):
     699        (.TestSuite.prototype.testPauseOnException):
     700        (.TestSuite.prototype.testPauseWhenLoadingDevTools):
     701        (.TestSuite.prototype.testPauseWhenScriptIsRunning.testScriptPauseAfterDelay):
     702        (.TestSuite.prototype.testPauseWhenScriptIsRunning.testScriptPause):
     703        (.TestSuite.prototype.testPauseWhenScriptIsRunning):
     704        (.TestSuite.prototype.optionsToString_):
     705        (.TestSuite.prototype.evaluateInConsole_):
     706        (.TestSuite.prototype.waitForSetBreakpointResponse_):
     707        (.TestSuite.prototype.testEvalOnCallFrame.setBreakpointCallback):
     708        (.TestSuite.prototype.testEvalOnCallFrame.waitForBreakpointHit):
     709        (.TestSuite.prototype.testCompletionOnPause):
     710        (.TestSuite.prototype.testCompletionOnPause.testLocalsCompletion):
     711        (.TestSuite.prototype.testCompletionOnPause.testThisCompletion):
     712        (.TestSuite.prototype.testCompletionOnPause.testFieldCompletion):
     713        (.TestSuite.prototype.testCompletionOnPause.checkCompletions):
     714        (.TestSuite.prototype.testAutoContinueOnSyntaxError.checkScriptsList):
     715        (.TestSuite.prototype.testAutoContinueOnSyntaxError.waitForExceptionEvent.test):
     716        (.TestSuite.prototype.testAutoContinueOnSyntaxError.waitForExceptionEvent):
     717        (.TestSuite.prototype._checkExecutionLine):
     718        (.TestSuite.prototype._scriptsAreParsed):
     719        (.TestSuite.prototype._waitForScriptPause):
     720        (.TestSuite.prototype._checkSourceFrameWhenLoaded.checkExecLine):
     721        (.TestSuite.prototype._checkSourceFrameWhenLoaded):
     722        (.TestSuite.prototype._performSteps.doNextAction):
     723        (.TestSuite.prototype._performSteps):
     724        (.TestSuite.prototype._executeCodeWhenScriptsAreParsed.executeFunctionInInspectedPage):
     725        (.TestSuite.prototype._waitUntilScriptsAreParsed.waitForAllScripts):
     726        (.TestSuite.prototype._waitUntilScriptsAreParsed):
     727        (.TestSuite.prototype._executeFunctionForStepTest):
     728        (.TestSuite.prototype.testStepOver):
     729        (.TestSuite.prototype.testStepOut):
     730        (.TestSuite.prototype.testStepIn):
     731        (.TestSuite.prototype._evaluateXpath):
     732        (.TestSuite.prototype._findNode):
     733        (.TestSuite.prototype._findText):
     734        (.TestSuite.prototype._nodeIterator):
     735        (.TestSuite.prototype._checkScopeSectionDiv):
     736        (.TestSuite.prototype._expandScopeSections.updateListener):
     737        (.TestSuite.prototype._expandScopeSections):
     738        (.TestSuite.prototype.testExpandScope):
     739        (.TestSuite.prototype.testExpandScope.examineScopes):
     740        (.TestSuite.prototype._findChildProperty):
     741        (.TestSuite.prototype._hookGetPropertiesCallback.accessor.getProperties):
     742        (.TestSuite.prototype._hookGetPropertiesCallback.try):
     743        (.TestSuite.prototype._hookGetPropertiesCallback):
     744        (.TestSuite.prototype.testDebugIntrinsicProperties.expandLocalScope):
     745        (.TestSuite.prototype.testDebugIntrinsicProperties):
     746        (.TestSuite.prototype.testDebugIntrinsicProperties.expandAndCheckNextProperty):
     747        (.TestSuite.prototype.testDebugIntrinsicProperties.checkProperty):
     748        (.TestSuite.createKeyEvent):
     749        (.TestSuite.prototype.testConsoleLog.assertNext):
     750        (.TestSuite.prototype.testConsoleLog):
     751        (.TestSuite.prototype.testEvalGlobal.initEval):
     752        (.TestSuite.prototype.testEvalGlobal):
     753        (.TestSuite.prototype.testShowStoragePanel.this.addSniffer.):
     754        (.TestSuite.prototype.testShowStoragePanel.this.addSniffer):
     755        (.uiTests.runAllTests):
     756        (.uiTests.runTest):
     757
    3797582010-02-09  Avi Drissman  <avi@chromium.org>
    380759
Note: See TracChangeset for help on using the changeset viewer.