Implement OCSP stapling in Windows BoringSSL port.
[chromium-blink-merge.git] / third_party / polymer / components-chromium / core-overlay / core-overlay-layer.html
blob5aa30c0408e552eb2c696febf42f83b504c29a72
1 <!--
2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
3 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
5 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
6 Code distributed by Google as part of the polymer project is also
7 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
8 -->
10 <polymer-element name="core-overlay-layer" assetpath="">
11 <template>
12 <style>
13 :host {
14 position: fixed;
15 top: 0;
16 left: 0;
17 z-index: 1000;
18 display: none;
21 :host(.core-opened) {
22 display: block;
24 </style>
25 <content></content>
26 </template>
28 </polymer-element>
29 <script src="core-overlay-layer-extracted.js"></script>