| Index: LayoutTests/inspector/tracing/timeline-paint-with-style-recalc-invalidations.html
|
| diff --git a/LayoutTests/inspector/tracing/timeline-paint-with-style-recalc-invalidations.html b/LayoutTests/inspector/tracing/timeline-paint-with-style-recalc-invalidations.html
|
| index 9d9baccdf8495fc621b36695d45f0e43f5a9ec9e..9405a670ebd180bc3b90f13167ad12b59eb47929 100644
|
| --- a/LayoutTests/inspector/tracing/timeline-paint-with-style-recalc-invalidations.html
|
| +++ b/LayoutTests/inspector/tracing/timeline-paint-with-style-recalc-invalidations.html
|
| @@ -48,26 +48,13 @@ function test()
|
|
|
| function testSubframe(next)
|
| {
|
| - var firstPaintRecord = InspectorTest.findFirstTimelineRecord(WebInspector.TimelineModel.RecordType.Paint);
|
| - var secondPaintRecord = undefined;
|
| -
|
| - function findSecondPaint(record)
|
| - {
|
| - if (record.type() !== WebInspector.TimelineModel.RecordType.Paint)
|
| - return false;
|
| - if (record === firstPaintRecord)
|
| - return false;
|
| - secondPaintRecord = record;
|
| - return true;
|
| - }
|
| -
|
| - InspectorTest.timelineModel().forAllRecords(findSecondPaint);
|
| -
|
| // The first paint corresponds to the local frame and should have no invalidations.
|
| + var firstPaintRecord = InspectorTest.findFirstTimelineRecord(WebInspector.TimelineModel.RecordType.Paint);
|
| var firstInvalidations = firstPaintRecord._event.invalidationTrackingEvents;
|
| InspectorTest.assertEquals(firstInvalidations, undefined);
|
|
|
| // The second paint corresponds to the subframe and should have our style invalidations.
|
| + var secondPaintRecord = InspectorTest.findTimelineRecord(WebInspector.TimelineModel.RecordType.Paint, 1);
|
| var secondInvalidations = secondPaintRecord._event.invalidationTrackingEvents;
|
| InspectorTest.assertEquals(secondInvalidations.length, 1);
|
| InspectorTest.assertEquals(secondInvalidations[0].type, WebInspector.TracingTimelineModel.RecordType.StyleRecalcInvalidationTracking);
|
|
|