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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/hide-shortcut.html

Issue 2932543002: DevTools: reveal and highlight dom nodes when searching in elements panel. (Closed)
Patch Set: rebaseline Created 3 years, 6 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/elements/resolve-alien-node.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/elements/hide-shortcut.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/hide-shortcut.html b/third_party/WebKit/LayoutTests/inspector/elements/hide-shortcut.html
index cabdc0afa43b930c854efc4f9ab07dfcfa5b6460..1b124c6c5c6bfd11fe44a9b1b6225247b36070fb 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/hide-shortcut.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/hide-shortcut.html
@@ -51,7 +51,7 @@ function test()
function testToggleHideShortcutOn(next)
{
- treeOutline.toggleHideElement(parentNode, callback);
+ treeOutline.toggleHideElement(parentNode).then(callback);
function callback()
{
@@ -76,7 +76,7 @@ function test()
function testToggleHideShortcutOff(next)
{
- treeOutline.toggleHideElement(parentNode, callback);
+ treeOutline.toggleHideElement(parentNode).then(callback);
function callback()
{
@@ -121,7 +121,7 @@ function test()
function testToggleHideShortcutOnInFrame(next)
{
- treeOutline.toggleHideElement(frameNode, callback);
+ treeOutline.toggleHideElement(frameNode).then(callback);
function callback()
{
@@ -142,7 +142,7 @@ function test()
function testPseudoToggle(pseudoNode, next)
{
- treeOutline.toggleHideElement(pseudoNode, callback);
+ treeOutline.toggleHideElement(pseudoNode).then(callback);
function callback()
{
var pseudoNodeTypeArg = pseudoNode.pseudoType() ? ("\"" + pseudoNode.pseudoType() + "\"") : "undefined";
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/elements/resolve-alien-node.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698