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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-layout.html

Issue 1896793002: Rename (updateLayout/updateStyle).*.() to updateStyleAndLayout.*.() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-layout.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-layout.html b/third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-layout.html
index f9a3484aeef78876f10642c4749b7277b08f1c36..52ef57a18305369849a32b6601ea810682cc8be4 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-layout.html
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/timeline/timeline-layout.html
@@ -25,10 +25,10 @@ function test()
function finish(devtoolsEvents)
{
var schedRecalc = InspectorTest.findEvent("ScheduleStyleRecalculation", "I");
- var recalcBegin = InspectorTest.findEvent("UpdateLayoutTree", "B");
- var recalcEnd = InspectorTest.findEvent("UpdateLayoutTree", "E");
- InspectorTest.log("UpdateLayoutTree frames match: " + (schedRecalc.args.data.frame === recalcBegin.args.beginData.frame));
- InspectorTest.log("UpdateLayoutTree elementCount > 0: " + (recalcEnd.args.elementCount > 0));
+ var recalcBegin = InspectorTest.findEvent("UpdateStyleAndLayoutTree", "B");
+ var recalcEnd = InspectorTest.findEvent("UpdateStyleAndLayoutTree", "E");
+ InspectorTest.log("UpdateStyleAndLayoutTree frames match: " + (schedRecalc.args.data.frame === recalcBegin.args.beginData.frame));
+ InspectorTest.log("UpdateStyleAndLayoutTree elementCount > 0: " + (recalcEnd.args.elementCount > 0));
var invalidate = InspectorTest.findEvent("InvalidateLayout", "I");
var layoutBegin = InspectorTest.findEvent("Layout", "B");

Powered by Google App Engine
This is Rietveld 408576698