Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / tools / telemetry / telemetry / web_components / results_viewer_unittest.html
1 <!DOCTYPE html>
2 <!--
3 Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <link rel="import" href="/telemetry/web_components/results_viewer.html">
8 <script>
9 'use strict';
10
11 tvcm.unittest.testSuite(function() {
12   test('testBasic', function() {
13     var resultsViewer = new telemetry.web_components.ResultsViewer();
14     resultsViewer.dataToView = {hello: 'world', nice: ['to', 'see', 'you']};
15     this.addHTMLOutput(resultsViewer);
16   });
17 });
18 </script>