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

Side by Side Diff: Tools/GardeningServer/ui/ct-test-output.html

Issue 728023004: Remove GardeningServer. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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 <!--
2 Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 -->
6
7 <link rel="import" href="ct-popout-iframe.html">
8
9 <polymer-element name="ct-test-output" attributes="type url">
10 <template>
11 <style>
12 .result {
13 border: 1px solid gray;
14 line-height: 0;
15 }
16 img {
17 width: 100%;
18 }
19 ct-popout-iframe {
20 height: 400px;
21 }
22 </style>
23
24 <div class="result">
25 <template if="{{url}}">
26 <template if="{{type == _kImageType}}">
27 <img src="{{url}}">
28 </template>
29 <template if="{{type == _kTextType}}">
30 <ct-popout-iframe src="{{url}}"></ct-popout-iframe>
31 </template>
32 <template if="{{type == _kAudioType}}">
33 <audio controls src="{{url}}"></audio>
34 </template>
35 </template>
36 </div>
37 </template>
38 <script>
39 Polymer({
40 type: '',
41 url: '',
42 _kAudioType: results.kAudioType,
43 _kImageType: results.kImageType,
44 _kTextType: results.kTextType,
45 });
46 </script>
47 </polymer-element>
OLDNEW
« no previous file with comments | « Tools/GardeningServer/ui/ct-test-list.html ('k') | Tools/GardeningServer/ui/ct-tree-select.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698