| Index: third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint-with-layout-invalidations-on-deleted-node.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint-with-layout-invalidations-on-deleted-node.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint-with-layout-invalidations-on-deleted-node.html
|
| index 463ffad0ee665d47fe454a97d58ac64f955bf3db..9d8ee003e14f210db1948d0316f8bae81658e882 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint-with-layout-invalidations-on-deleted-node.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint-with-layout-invalidations-on-deleted-node.html
|
| @@ -31,7 +31,7 @@ function test()
|
| function testLocalFrame(next)
|
| {
|
| InspectorTest.invokeAsyncWithTimeline("display", function() {
|
| - InspectorTest.dumpInvalidations(WebInspector.TimelineModel.RecordType.Paint, 0, "paint invalidations");
|
| + InspectorTest.dumpInvalidations(TimelineModel.TimelineModel.RecordType.Paint, 0, "paint invalidations");
|
| next();
|
| });
|
| },
|
| @@ -40,12 +40,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 layout/style invalidations.
|
| - InspectorTest.dumpInvalidations(WebInspector.TimelineModel.RecordType.Paint, 1, "second paint invalidations");
|
| + InspectorTest.dumpInvalidations(TimelineModel.TimelineModel.RecordType.Paint, 1, "second paint invalidations");
|
|
|
| next();
|
| });
|
|
|