(id)
| 28 | |
| 29 | // Locally redefine the `byId` and `make` functions to use shadow DOM |
| 30 | function byId(id) { |
| 31 | return getWorkArea().shadowRoot.getElementById(id) || document.getElementById(id) |
| 32 | } |
| 33 | function make(htmlStr) { |
| 34 | htmlStr = htmlStr.trim() |
| 35 | var makeFn = function() { |
no test coverage detected