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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/ct-test-output.html
diff --git a/Tools/GardeningServer/ui/ct-test-output.html b/Tools/GardeningServer/ui/ct-test-output.html
deleted file mode 100644
index 219560870f66516a5314bdc5d3fea58b1501c2c6..0000000000000000000000000000000000000000
--- a/Tools/GardeningServer/ui/ct-test-output.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<!--
-Copyright 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="ct-popout-iframe.html">
-
-<polymer-element name="ct-test-output" attributes="type url">
- <template>
- <style>
- .result {
- border: 1px solid gray;
- line-height: 0;
- }
- img {
- width: 100%;
- }
- ct-popout-iframe {
- height: 400px;
- }
- </style>
-
- <div class="result">
- <template if="{{url}}">
- <template if="{{type == _kImageType}}">
- <img src="{{url}}">
- </template>
- <template if="{{type == _kTextType}}">
- <ct-popout-iframe src="{{url}}"></ct-popout-iframe>
- </template>
- <template if="{{type == _kAudioType}}">
- <audio controls src="{{url}}"></audio>
- </template>
- </template>
- </div>
- </template>
- <script>
- Polymer({
- type: '',
- url: '',
- _kAudioType: results.kAudioType,
- _kImageType: results.kImageType,
- _kTextType: results.kTextType,
- });
- </script>
-</polymer-element>
« 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