mirror of
https://github.com/jlengrand/webcomponentsjs.git
synced 2026-03-10 08:51:22 +00:00
style(shadowCSS) add a missing ";"
This commit is contained in:
@@ -495,7 +495,7 @@ var ShadowCSS = {
|
||||
// remove :host since it should be unnecessary
|
||||
var t = p.trim().replace(polyfillHostRe, '');
|
||||
if (t && (splits.indexOf(t) < 0) && (t.indexOf(attrName) < 0)) {
|
||||
p = t.replace(/([^:]*)(:*)(.*)/, '$1' + attrName + '$2$3')
|
||||
p = t.replace(/([^:]*)(:*)(.*)/, '$1' + attrName + '$2$3');
|
||||
}
|
||||
return p;
|
||||
}).join(sep);
|
||||
|
||||
Reference in New Issue
Block a user