|
|
@@ -863,6 +863,12 @@ this.SingleFileCore = this.SingleFileCore || (() => {
|
|
|
if (linkElement.media) {
|
|
|
styleElement.media = linkElement.media;
|
|
|
}
|
|
|
+ if (linkElement.rel) {
|
|
|
+ styleElement.rel = linkElement.rel;
|
|
|
+ }
|
|
|
+ if (linkElement.title) {
|
|
|
+ styleElement.title = linkElement.title;
|
|
|
+ }
|
|
|
styleElement.textContent = stylesheetContent;
|
|
|
linkElement.parentElement.replaceChild(styleElement, linkElement);
|
|
|
} else {
|