File tree 2 files changed +21
-16
lines changed
2 files changed +21
-16
lines changed Original file line number Diff line number Diff line change @@ -185,29 +185,17 @@ export function inject(target) {
185
185
let el = styleElements . get ( root ) ;
186
186
if ( ! el ) {
187
187
el = global . document . createElement ( "style" ) ;
188
- el . appendChild ( global . document . createTextNode ( "" ) ) ;
189
188
root . appendChild ( el ) ;
190
189
191
190
styleElements . set ( root , el ) ;
192
191
}
193
192
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 ;
206
196
}
207
197
208
- for ( ; i < elSheet . cssRules . length ; i ++ ) {
209
- elSheet . removeRule ( i ) ;
210
- }
198
+ el . textContent = result ;
211
199
}
212
200
213
201
injectedTargets . add ( root ) ;
Original file line number Diff line number Diff line change 1
1
import { html } from "../../src/template/index.js" ;
2
+ import { resolveTimeout } from "../helpers.js" ;
2
3
3
4
describe ( "layout:" , ( ) => {
4
5
let host ;
@@ -83,6 +84,22 @@ describe("layout:", () => {
83
84
expect ( window . getComputedStyle ( host ) . flexDirection ) . toBe ( "column" ) ;
84
85
} ) ;
85
86
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
+
86
103
it ( "supports custom selectors" , ( ) => {
87
104
html `< template layout ="row " layout.active ="column "> </ template > ` ( host ) ;
88
105
You can’t perform that action at this time.
0 commit comments