Home | History | Annotate | Download | only in js

Lines Matching full:callback

638  * source frame is setup. Invokes the callback when the condition is satisfied.
640 * @param {function(WebInspector.SourceView,string)} callback
642 TestSuite.prototype.showMainPageScriptSource_ = function(scriptName, callback)
683 callback(view, scriptResource.url);
686 callback(view, scriptResource.url);
692 * the callback when the result message is received and added to the console.
694 * @param {function(string)} callback
696 TestSuite.prototype.evaluateInConsole_ = function(code, callback)
704 callback(commandResult.toMessageElement().textContent);
750 * Waits for script pause, checks expectations, and invokes the callback.
752 * @param {function():void} callback
754 TestSuite.prototype._waitForScriptPause = function(expectations, callback)
771 test._checkSourceFrameWhenLoaded(expectations, callback);
778 * the callback.
780 * @param {function():void} callback
782 TestSuite.prototype._checkSourceFrameWhenLoaded = function(expectations, callback)
792 test._checkSourceFrameWhenLoaded(expectations, callback);
797 callback();
825 * Waits until all the scripts are parsed and invokes the callback.
827 TestSuite.prototype._waitUntilScriptsAreParsed = function(expectedScripts, callback)
833 callback();