* Creates an iframe to display an encrypted form * The iframe will be injected into the container identified by selector. * @param {CssSelector} selector - target container * @param {String} formHtml - the form definition * @param {AsciiArmored} signature - the OpenPGP signature over the
(selector, formHtml, signature)
| 182 | * @throws {Error} error.code = 'INVALID_FORM' the form definition is not valid |
| 183 | */ |
| 184 | createEncryptedFormContainer(selector, formHtml, signature) { |
| 185 | return send('encrypted-form-container', {selector, formHtml, signature}); |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | // connection to content script is alive |
no test coverage detected