blob: 0aa0b45196e5b4ce0428e6b9a2fe74ff801781a4 [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright (c) 2014 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/stack_frame.html">
<link rel="import" href="/core/test_utils.html">
<script>
'use strict';
tr.b.unittest.testSuite(function() {
test('instantiate', function() {
var model = new tr.Model();
var fA = tr.c.test_utils.newStackTrace(model, 'cat', ['a1', 'a2', 'a3']);
var stackFrameView = document.createElement('tr-c-a-stack-frame');
stackFrameView.stackFrame = fA;
this.addHTMLOutput(stackFrameView);
});
});
</script>