Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Tools / GardeningServer / ui / ct-popout-iframe.html
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 <polymer-element name="ct-popout-iframe" attributes="src" noscript>
8   <template>
9     <style>
10       :host {
11         display: flex;
12         flex-direction: column;
13       }
14       .link {
15         /* <ct-test-output> sets line-height 0, so reset it here. */
16         line-height: initial;
17         padding: 3px;
18       }
19       iframe {
20         border: none;
21         width: 100%;
22         flex: 1;
23       }
24     </style>
25
26     <iframe src="{{src}}"></iframe>
27     <div class="link"><a href="{{src}}" target="_blank">pop out to a new tab</a></div>
28   </template>
29 </polymer-element>