| Index: third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint-with-style-recalc-invalidations.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint-with-style-recalc-invalidations.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint-with-style-recalc-invalidations.html
|
| index 5b37aad9b159f313c462db0b766cc9f28aa7f735..b0f124ebe3f2690f995bc74a2415a9e924184ad8 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint-with-style-recalc-invalidations.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint-with-style-recalc-invalidations.html
|
| @@ -25,7 +25,7 @@ function test()
|
| function testLocalFrame(next)
|
| {
|
| InspectorTest.invokeAsyncWithTimeline("display", function() {
|
| - InspectorTest.dumpInvalidations(WebInspector.TimelineModel.RecordType.Paint, 0, "first paint invalidations");
|
| + InspectorTest.dumpInvalidations(TimelineModel.TimelineModel.RecordType.Paint, 0, "first paint invalidations");
|
| next();
|
| });
|
| },
|
| @@ -34,12 +34,12 @@ function test()
|
| {
|
| InspectorTest.invokeAsyncWithTimeline("updateSubframeAndDisplay", function() {
|
| // The first paint corresponds to the local frame and should have no invalidations.
|
| - var firstPaintRecord = InspectorTest.findFirstTimelineRecord(WebInspector.TimelineModel.RecordType.Paint);
|
| - var firstInvalidations = WebInspector.InvalidationTracker.invalidationEventsFor(firstPaintRecord._event);
|
| + var firstPaintRecord = InspectorTest.findFirstTimelineRecord(TimelineModel.TimelineModel.RecordType.Paint);
|
| + var firstInvalidations = TimelineModel.InvalidationTracker.invalidationEventsFor(firstPaintRecord._event);
|
| InspectorTest.assertEquals(firstInvalidations, null);
|
|
|
| // The second paint corresponds to the subframe and should have our style invalidations.
|
| - InspectorTest.dumpInvalidations(WebInspector.TimelineModel.RecordType.Paint, 1, "second paint invalidations");
|
| + InspectorTest.dumpInvalidations(TimelineModel.TimelineModel.RecordType.Paint, 1, "second paint invalidations");
|
| next();
|
| });
|
| }
|
|
|