(mode)
| 4248 | } |
| 4249 | function restoreOriginal(el) { |
| 4250 | if (!ORIGINALS.has(el)) return; |
| 4251 | const orig = ORIGINALS.get(el); |
| 4252 | const img = getImgElem(el); |
| 4253 | if (orig.type === "img" && img) img.src = orig.src || ""; |
| 4254 | else if (orig.type === "bg") { |
| 4255 | const html = el; |
| 4256 | html.style.backgroundImage = orig.bg || ""; |
| 4257 | html.style.backgroundRepeat = ""; |
no test coverage detected