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

Side by Side Diff: tools/cc-frame-viewer/src/layer_impl_view_test.html

Issue 15736032: Remove old cc-frame-viewer now that it is upstreamed into trace_viewer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <!--
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.
7 -->
8 <head>
9 <script src="base.js"></script>
10 <script>
11 base.require('base.unittest');
12 base.require('layer_impl_view');
13 base.require('model');
14 </script>
15 </head>
16 <body>
17 <script src="../unittest_data/one_frame_with_layers.js"></script>
18 <script>
19 'use strict';
20
21 function testInstantiateLTIV() {
22 var model = new ccfv.Model();
23 model.initFromFrameData(gOneFrameWithLayers);
24 var lthiHistory = base.dictionaryValues(model.lthiHistories)[0];
25 var lthi = lthiHistory.lthiSnapshots[0];
26
27 var layerImplView = new ccfv.LayerImplView();
28 this.addHTMLOutput('LTIView', layerImplView);
29 layerImplView.layerImpl = lthi.activeTree.allLayers[0];
30 }
31 </script>
32 </body>
33 </html>
OLDNEW
« no previous file with comments | « tools/cc-frame-viewer/src/layer_impl_view.js ('k') | tools/cc-frame-viewer/src/layer_tree_impl_view.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698