Home | History | Annotate | Download | only in front-end

Lines Matching refs:domAgent

105         DOMAgent.setNodeName(this.id, name, callback);
120 DOMAgent.setNodeValue(this.id, value, callback);
144 DOMAgent.setAttribute(this.id, name, value, mycallback.bind(this));
169 DOMAgent.removeAttribute(this.id, name, mycallback.bind(this));
184 DOMAgent.getChildNodes(this.id, mycallback.bind(this));
189 DOMAgent.getOuterHTML(this.id, callback);
194 DOMAgent.setOuterHTML(this.id, html, callback);
199 DOMAgent.removeNode(this.id, callback);
204 DOMAgent.copyNode(this.id, callback);
209 DOMAgent.getEventListenersForNode(this.id, callback);
328 WebInspector.DOMDocument = function(domAgent, payload)
332 this._domAgent = domAgent;
337 WebInspector.DOMAgent = function() {
343 WebInspector.DOMAgent.Events = {
352 WebInspector.DOMAgent.prototype = {
381 DOMAgent.getDocument(onDocumentAvailable.bind(this));
386 this._dispatchWhenDocumentAvailable(DOMAgent.pushNodeToFrontend.bind(DOMAgent), objectId, callback);
391 this._dispatchWhenDocumentAvailable(DOMAgent.pushNodeByPathToFrontend.bind(DOMAgent), path, callback);
401 console.error("Error during DOMAgent operation: " + error);
432 this.dispatchEventToListeners(WebInspector.DOMAgent.Events.AttrModified, node);
439 this.dispatchEventToListeners(WebInspector.DOMAgent.Events.CharacterDataModified, node);
463 this.dispatchEventToListeners(WebInspector.DOMAgent.Events.DocumentUpdated, this._document);
498 this.dispatchEventToListeners(WebInspector.DOMAgent.Events.ChildNodeCountUpdated, node);
507 this.dispatchEventToListeners(WebInspector.DOMAgent.Events.NodeInserted, node);
515 this.dispatchEventToListeners(WebInspector.DOMAgent.Events.NodeRemoved, {node:node, parent:parent});
524 DOMAgent.performSearch(query, !!searchSynchronously);
530 DOMAgent.cancelSearch();
535 DOMAgent.querySelector(nodeId, selectors, this._wrapClientCallback(callback));
540 DOMAgent.querySelectorAll(nodeId, selectors, this._wrapClientCallback(callback));
544 WebInspector.DOMAgent.prototype.__proto__ = WebInspector.Object.prototype;
546 WebInspector.DOMDispatcher = function(domAgent)
548 this._domAgent = domAgent;