Created
November 17, 2017 17:54
-
-
Save sandro-pasquali/6dc60303142c58f2e60f27f5725ace33 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function copyStyles(sourceDoc, targetDoc) { | |
Array.from(sourceDoc.styleSheets).forEach(styleSheet => { | |
if (styleSheet.cssRules) { // for <style> elements | |
const newStyleEl = sourceDoc.createElement('style'); | |
Array.from(styleSheet.cssRules).forEach(cssRule => { | |
// write the text of each rule into the body of the style element | |
newStyleEl.appendChild(sourceDoc.createTextNode(cssRule.cssText)); | |
}); | |
targetDoc.head.appendChild(newStyleEl); | |
} else if (styleSheet.href) { // for <link> elements loading CSS from a URL | |
const newLinkEl = sourceDoc.createElement('link'); | |
newLinkEl.rel = 'stylesheet'; | |
newLinkEl.href = styleSheet.href; | |
targetDoc.head.appendChild(newLinkEl); | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment