(doc)
| 12771 | let canPolicySetHTML = true; |
| 12772 | |
| 12773 | function getBody(doc){ |
| 12774 | return doc.body || doc.querySelector('body') || doc; |
| 12775 | } |
| 12776 | function createHTML(html){ |
| 12777 | const fragment = document.createDocumentFragment(); |
| 12778 | if (html === null || html === undefined || html === '') return fragment; |
no outgoing calls
no test coverage detected