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

Unified Diff: LayoutTests/inspector/tracing.html

Issue 211773002: Rename updateStyle to updateRenderTree (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix tracing test Created 6 years, 9 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/core/animation/EffectInput.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/tracing.html
diff --git a/LayoutTests/inspector/tracing.html b/LayoutTests/inspector/tracing.html
index 45a81aafa9f376a1bafa70ef5408eaa28cc035c3..95ad98ca8a28e15676bd8f35adf639a0fe02b71e 100644
--- a/LayoutTests/inspector/tracing.html
+++ b/LayoutTests/inspector/tracing.html
@@ -28,7 +28,7 @@ function test()
knownEvents["MessageLoop::PostTask"] = 0;
knownEvents["v8.callFunction"] = 0;
- knownEvents["Document::recalcStyle"] = 0;
+ knownEvents["Document::updateRenderTree"] = 0;
knownEvents["FrameView::layout"] = 0;
for (var i = 0; i < events.length; ++i) {
@@ -42,7 +42,7 @@ function test()
}
InspectorTest.assertGreaterOrEqual(events.length, 100, "Too few trace events recorded");
InspectorTest.assertGreaterOrEqual(knownEvents["v8.callFunction"], 10, "Too few v8.callFunction");
- InspectorTest.assertGreaterOrEqual(knownEvents["Document::recalcStyle"], 1, "Too few Document::recalcStyle");
+ InspectorTest.assertGreaterOrEqual(knownEvents["Document::updateRenderTree"], 1, "Too few Document::recalcStyle");
InspectorTest.assertGreaterOrEqual(knownEvents["FrameView::layout"], 1, "Too few FrameView::layout");
InspectorTest.assertGreaterOrEqual(phaseComplete, 50, "Too few begin events");
InspectorTest.assertGreaterOrEqual(Object.keys(processes).length, 2, "Too few processes");
« no previous file with comments | « no previous file | Source/core/animation/EffectInput.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698