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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/timeline-paint-with-style-recalc-invalidations.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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/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();
});
}

Powered by Google App Engine
This is Rietveld 408576698