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

Unified Diff: LayoutTests/inspector/elements/breadcrumb-updates.html

Issue 22548006: DevTools: Improve performance of the element breadcrumbs. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixed the test Created 7 years, 4 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 | Source/devtools/front_end/DOMAgent.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/elements/breadcrumb-updates.html
diff --git a/LayoutTests/inspector/elements/breadcrumb-updates.html b/LayoutTests/inspector/elements/breadcrumb-updates.html
index 4b9d37904fb5be065258a6e2c856b00de4540dd5..da248ea0cdfd08144d198bf5d8aad586b803f713 100644
--- a/LayoutTests/inspector/elements/breadcrumb-updates.html
+++ b/LayoutTests/inspector/elements/breadcrumb-updates.html
@@ -28,13 +28,15 @@ function test()
function step1()
{
dumpBreadcrumb("Original breadcrumb");
- InspectorTest.evaluateInPage("changeClass()", step2);
+ InspectorTest.addSniffer(WebInspector.panels.elements, "updateBreadcrumb", step2);
+ InspectorTest.evaluateInPage("changeClass()");
}
function step2()
{
dumpBreadcrumb("After class change");
- InspectorTest.evaluateInPage("deleteClass()", step3);
+ InspectorTest.addSniffer(WebInspector.panels.elements, "updateBreadcrumb", step3);
+ InspectorTest.evaluateInPage("deleteClass()");
}
function step3()
« no previous file with comments | « no previous file | Source/devtools/front_end/DOMAgent.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698