We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3631526 commit e3fd8abCopy full SHA for e3fd8ab
src/client/updaters/tag.js
@@ -39,6 +39,7 @@ export default function updateTag({ attribute, tagIDKeyName } = {}, type, tags,
39
newElement.innerHTML = tag.innerHTML
40
} else if (attr === 'cssText') {
41
if (newElement.styleSheet) {
42
+ /* istanbul ignore next */
43
newElement.styleSheet.cssText = tag.cssText
44
} else {
45
newElement.appendChild(document.createTextNode(tag.cssText))
0 commit comments