4 Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
9 <script src=
"base.js"></script>
11 base
.require('base.unittest');
12 base
.require('tree_quad_view');
13 base
.require('model');
17 <script src=
"../unittest_data/full_trace_but_with_only_one_frame.js"></script>
21 var TreeQuadView
= ccfv
.TreeQuadView
;
23 function testSimpleColorMap() {
24 var model
= new ccfv
.Model();
25 model
.initFromTraceEvents(gFullTraceButWithOnlyOneFrame
);
26 var lthiHistory
= base
.dictionaryValues(model
.lthiHistories
)[0];
27 var lthi
= lthiHistory
.lthiSnapshots
[0];
29 var view
= new TreeQuadView();
31 view
.viewport
= new ccfv
.QuadViewViewport(lthi
.activeTree
.tileBBox
);
32 view
.which_tree
= lthi
.activeTree
.which_tree
;
33 view
.tiles
= lthi
.activeTree
.tiles
;
35 this.addHTMLOutput('view', view
);