Index: LayoutTests/inspector/timeline/timeline-layer-tree-snapshot.html |
diff --git a/LayoutTests/inspector/timeline/timeline-layer-tree-snapshot.html b/LayoutTests/inspector/timeline/timeline-layer-tree-snapshot.html |
index a7137467253587304f5e560701f014a414734538..82ee9c3c8557a05dc3d6072ea7f585ed49456d8c 100644 |
--- a/LayoutTests/inspector/timeline/timeline-layer-tree-snapshot.html |
+++ b/LayoutTests/inspector/timeline/timeline-layer-tree-snapshot.html |
@@ -48,14 +48,14 @@ function test() |
var pendingEventCount = 0; |
function loadSnapshot(record) |
{ |
- if (record.type !== WebInspector.TimelineModel.RecordType.UpdateLayerTree) |
+ if (record.type() !== WebInspector.TimelineModel.RecordType.UpdateLayerTree) |
return; |
// Some updates may not produce new layer tree snapshot |
- if (!record.data["layerTree"]) |
+ if (!record.data()["layerTree"]) |
return; |
++pendingEventCount; |
var layerTree = new WebInspector.AgentLayerTree(WebInspector.targetManager.mainTarget()); |
- layerTree.setLayers(record.data["layerTree"], onLayersSet.bind(null, layerTree)); |
+ layerTree.setLayers(record.data()["layerTree"], onLayersSet.bind(null, layerTree)); |
} |
function onLayersSet(layerTree) |