summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/pdf/elements/viewer-ink-host.html
blob: 1a7a2ff73ea2ddc66e62c19432286a96afe57797 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<link rel="import" href="chrome://resources/html/polymer.html">

<dom-module id="viewer-ink-host">
  <template>
    <style>
      :host {
        visibility: hidden;
      }
      iframe {
        border: 0;
        height: 100%;
        pointer-events: none;
        width: 100%;
      }
    </style>
    <iframe id=frame></iframe>
  </template>
  <script src="viewer-ink-host.js"></script>
</dom-module>