blob: ce9166c69af690d5039c8c43d1b85b56aa1db302 [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright (c) 2013 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<link rel="import" href="/core/analysis/single_object_snapshot_sub_view.html">
<link rel="import" href="/core/test_utils.html">
<link rel="import" href="/core/selection.html">
<link rel="import" href="/core/trace_model/trace_model.html">
<script>
'use strict';
tv.b.unittest.testSuite(function() {
var TraceModel = tv.c.TraceModel;
var Selection = tv.c.Selection;
var ObjectInstance = tv.c.trace_model.ObjectInstance;
test('instantiate_snapshotView', function() {
var i10 = new tv.c.trace_model.ObjectInstance(
{}, '0x1000', 'cat', 'name', 10);
var s10 = i10.addSnapshot(10, {foo: 1});
i10.updateBounds();
var selection = new Selection();
selection.push(s10);
var view = document.createElement('tv-c-single-object-snapshot-sub-view');
view.selection = selection;
this.addHTMLOutput(view);
});
});
</script>