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

Side by Side Diff: Tools/GardeningServer/ui/ct-results-comparison.html

Issue 350563002: Port first garden-o-matic component over to polymer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add files Created 6 years, 6 months 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-test-output.html">
8
9 <polymer-element name="ct-results-comparison" attributes="type expectedUrl actua lUrl diffUrl" noscript>
10 <template>
11 <style>
12 :host {
13 display: flex;
14 flex-wrap: wrap;
15 width: 100%;
16 }
17 .container {
18 flex: 1;
19 min-width: 300px;
20 }
21 </style>
22
23 <div class="container">
24 <h2>Expected</h2>
25 <ct-test-output type="{{type}}" url="{{expectedUrl}}"></ct-test-outp ut>
26 </div>
27 <div class="container">
28 <h2>Actual</h2>
29 <ct-test-output type="{{type}}" url="{{actualUrl}}"></ct-test-output >
30 </div>
31 <div class="container">
32 <h2>Diff</h2>
33 <ct-test-output type="{{type}}" url="{{diffUrl}}"></ct-test-output>
34 </div>
35 </template>
36 </polymer-element>
OLDNEW
« no previous file with comments | « Tools/GardeningServer/styles/results.css ('k') | Tools/GardeningServer/ui/ct-results-comparison-tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698