blob: aa9b074490ab7123624ddd8a7da155b8425975d2 [file] [log] [blame]
Chris Craikb122baf2015-03-05 13:58:42 -08001<!DOCTYPE html>
2<!--
3Copyright (c) 2014 The Chromium Authors. All rights reserved.
4Use of this source code is governed by a BSD-style license that can be
5found in the LICENSE file.
6-->
7<link rel="import" href="/core/analysis/time_stamp.html">
8<script>
9'use strict';
10
11tv.b.unittest.testSuite(function() {
12 test('instantiate', function() {
13 var timeStamp = document.createElement('tv-c-a-time-stamp');
14 timeStamp.timestamp = 73;
15 this.addHTMLOutput(timeStamp);
16 });
17});
18</script>