()
| 3632 | }; |
| 3633 | |
| 3634 | function initIframe () { |
| 3635 | if (self.iframe) { |
| 3636 | self.form.removeChild(self.iframe); |
| 3637 | } |
| 3638 | |
| 3639 | try { |
| 3640 | // ie6 dynamic iframes with target="" support (thanks Chris Lambacher) |
| 3641 | iframe = document.createElement('<iframe name="'+ self.iframeId +'">'); |
| 3642 | } catch (e) { |
| 3643 | iframe = document.createElement('iframe'); |
| 3644 | iframe.name = self.iframeId; |
| 3645 | } |
| 3646 | |
| 3647 | iframe.id = self.iframeId; |
| 3648 | |
| 3649 | self.form.appendChild(iframe); |
| 3650 | self.iframe = iframe; |
| 3651 | }; |
| 3652 | |
| 3653 | initIframe(); |
| 3654 |
no outgoing calls
no test coverage detected