Home
last modified time | relevance | path

Searched refs:highlightNode (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
DUIUtils.js785 var highlightNode = ownerDocument.createElement("span");
786 highlightNode.className = styleClass;
787 highlightNode.textContent = lineText.substring(startOffset, endOffset);
795 lastTextNode.parentElement.insertBefore(highlightNode, lastTextNode);
796 …changes.push({ node: highlightNode, type: "added", nextSibling: lastTextNode, parent: lastTextNode…
797 highlightNodes.push(highlightNode);
800 lastTextNode.parentElement.insertBefore(prefixNode, highlightNode);
801 …changes.push({ node: prefixNode, type: "added", nextSibling: highlightNode, parent: lastTextNode.p…
807 firstTextNode.parentElement.insertBefore(highlightNode, anchorElement);
808 …changes.push({ node: highlightNode, type: "added", nextSibling: anchorElement, parent: firstTextNo…
[all …]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
DHeapSnapshotDataGrids.js169 highlightNode: function(node) method in WebInspector.HeapSnapshotSortableDataGrid
524 highlightNode: function(node) method in WebInspector.HeapSnapshotViewportDataGrid
528 WebInspector.HeapSnapshotSortableDataGrid.prototype.highlightNode.call(this, node); method in WebInspector
559 …WebInspector.HeapSnapshotSortableDataGrid.prototype.highlightNode.call(this, this._nodeToHighlight… method in WebInspector.HeapSnapshotSortableDataGrid
DHeapSnapshotGridNodes.js1091 … this._dataGrid.highlightNode(/** @type {!WebInspector.HeapSnapshotGridNode} */ (child));
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorOverlay.h98 void highlightNode(Node*, Node* eventTarget, const HighlightConfig&, bool omitTooltip);
DInspectorDOMAgent.cpp1172 m_overlay->highlightNode(node, 0 /* eventTarget */, *m_inspectModeHighlightConfig, false); in handleGestureEvent()
1185 m_overlay->highlightNode(node, 0 /* eventTarget */, *m_inspectModeHighlightConfig, false); in handleTouchEvent()
1237 …m_overlay->highlightNode(node, eventTarget, *m_inspectModeHighlightConfig, event.ctrlKey() || even… in handleMouseMove()
1317 void InspectorDOMAgent::highlightNode(ErrorString* errorString, const RefPtr<JSONObject>& highlight… in highlightNode() function in blink::InspectorDOMAgent
1337 m_overlay->highlightNode(node, 0 /* eventTarget */, *highlightConfig, false); in highlightNode()
1353 …m_overlay->highlightNode(frame->deprecatedLocalOwner(), 0 /* eventTarget */, *highlightConfig, fal… in highlightFrame()
DInspectorDOMAgent.h143 …virtual void highlightNode(ErrorString*, const RefPtr<JSONObject>& highlightConfig, const int* nod…
DInspectorOverlay.cpp435 void InspectorOverlay::highlightNode(Node* node, Node* eventTarget, const HighlightConfig& highligh… in highlightNode() function in blink::InspectorOverlay
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
DPaintProfilerView.js434 new WebInspector.DeferredDOMNode(target, backendNodeId).resolve(highlightNode);
438 function highlightNode(node) function
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DDOMModel.js1952 this._agent.highlightNode(config, objectId ? undefined : node.id, objectId);