| Index: third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint.html
|
| index 855d02ee2ff4a1adffb99b74767e200f953e2cd3..0c8cfe154dfb5aa296ba995fc4f7fbae883dfe3f 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint.html
|
| @@ -22,7 +22,7 @@ function test()
|
|
|
| function step1(records)
|
| {
|
| - var record = InspectorTest.findFirstTimelineRecord(WebInspector.TimelineModel.RecordType.Paint);
|
| + var record = InspectorTest.findFirstTimelineRecord(TimelineModel.TimelineModel.RecordType.Paint);
|
| if (record)
|
| InspectorTest.printTimelineRecordProperties(record);
|
| else
|
| @@ -32,7 +32,7 @@ function test()
|
|
|
| function step3(records)
|
| {
|
| - var paintRecord = InspectorTest.findFirstTimelineRecord(WebInspector.TimelineModel.RecordType.Paint);
|
| + var paintRecord = InspectorTest.findFirstTimelineRecord(TimelineModel.TimelineModel.RecordType.Paint);
|
| InspectorTest.assertTrue(paintRecord, "Paint record with subframe paint not found");
|
| var topQuad = paintRecord.traceEvent().args["data"].clip;
|
| var subframePaint = paintRecord.children()[0];
|
|
|