Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Unified Diff: LayoutTests/inspector/elements/edit-dom-actions.html

Issue 177653004: DevTools: Get rid of redundant default selection during inspectElement (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase on master Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/inspector/elements/edit-dom-actions.html
diff --git a/LayoutTests/inspector/elements/edit-dom-actions.html b/LayoutTests/inspector/elements/edit-dom-actions.html
index b335522e7c1f5d4aab2cc6809da455f51c524a64..5146eb3ed6dbc38ffb02b796008ea8755316ed73 100644
--- a/LayoutTests/inspector/elements/edit-dom-actions.html
+++ b/LayoutTests/inspector/elements/edit-dom-actions.html
@@ -106,7 +106,7 @@ function test()
var childNodes = testNode.children();
for (var i = 0; i < childNodes.length; ++i) {
if (childNodes[i].nodeType() === 8) {
- WebInspector._updateFocusedNode(childNodes[i].id);
+ WebInspector.Revealer.reveal(childNodes[i]);
callback(childNodes[i]);
return;
}

Powered by Google App Engine
This is Rietveld 408576698