OLD | NEW |
(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> |
OLD | NEW |