File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ class CSSModuleTestElement extends HTMLElement {
7
7
this . shadow . adoptedStyleSheets = [ sheet ] ;
8
8
9
9
this . shadow . innerHTML =
10
- `<div class="outer-container"><div class=" text-container">This text should be styled</div></div>` ;
10
+ `<div class="outer-container text-container">This text should be styled</div>` ;
11
11
}
12
12
}
13
13
export { CSSModuleTestElement } ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ class LinkTestElement extends HTMLElement {
4
4
this . shadow = this . attachShadow ( { mode : "closed" } ) ;
5
5
6
6
this . shadow . innerHTML =
7
- `<link rel="stylesheet" href="styles.css" /><div class="outer-container"><div class=" text-container">This text should be styled</div> </div>` ;
7
+ `<link rel="stylesheet" href="styles.css" /><div class="outer-container text-container">This text should be styled</div>` ;
8
8
}
9
9
}
10
10
export { LinkTestElement } ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class StyleTestElement extends HTMLElement {
22
22
text-fill-color: transparent;
23
23
-webkit-text-fill-color: transparent;
24
24
}
25
- </style><div class="outer-container"><div class=" text-container">This text should be styled</div> </div>` ;
25
+ </style><div class="outer-container text-container">This text should be styled</div>` ;
26
26
}
27
27
}
28
28
export { StyleTestElement } ;
You can’t perform that action at this time.
0 commit comments