Skip to content

Commit e915942

Browse files
committed
fix(layout): use textContent for style element fallback
1 parent 5db2d97 commit e915942

File tree

2 files changed

+21
-16
lines changed

2 files changed

+21
-16
lines changed

src/template/layout.js

+4-16
Original file line numberDiff line numberDiff line change
@@ -185,29 +185,17 @@ export function inject(target) {
185185
let el = styleElements.get(root);
186186
if (!el) {
187187
el = global.document.createElement("style");
188-
el.appendChild(global.document.createTextNode(""));
189188
root.appendChild(el);
190189

191190
styleElements.set(root, el);
192191
}
193192

194-
const elSheet = el.sheet;
195-
const cssRules = sheet.cssRules;
196-
197-
for (var i = 0; i < cssRules.length; i++) {
198-
if (elSheet.cssRules[i]) {
199-
if (elSheet.cssRules[i].cssText === cssRules[i].cssText) {
200-
continue;
201-
}
202-
elSheet.removeRule(i);
203-
}
204-
205-
elSheet.insertRule(cssRules[i].cssText, i);
193+
let result = "";
194+
for (let i = 0; i < sheet.cssRules.length; i++) {
195+
result += sheet.cssRules[i].cssText;
206196
}
207197

208-
for (; i < elSheet.cssRules.length; i++) {
209-
elSheet.removeRule(i);
210-
}
198+
el.textContent = result;
211199
}
212200

213201
injectedTargets.add(root);

test/spec/layout.js

+17
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { html } from "../../src/template/index.js";
2+
import { resolveTimeout } from "../helpers.js";
23

34
describe("layout:", () => {
45
let host;
@@ -83,6 +84,22 @@ describe("layout:", () => {
8384
expect(window.getComputedStyle(host).flexDirection).toBe("column");
8485
});
8586

87+
it("keeps rules when element is taken out from the document", () => {
88+
const shadowRoot = host.attachShadow({ mode: "open" });
89+
html`<template layout="block"><div layout="row"></div></template>`(
90+
host,
91+
shadowRoot,
92+
);
93+
document.body.removeChild(host);
94+
95+
return resolveTimeout().then(() => {
96+
document.body.appendChild(host);
97+
expect(window.getComputedStyle(shadowRoot.children[0]).display).toBe(
98+
"flex",
99+
);
100+
});
101+
});
102+
86103
it("supports custom selectors", () => {
87104
html`<template layout="row" layout.active="column"></template>`(host);
88105

0 commit comments

Comments
 (0)