You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** `updateComplete` lives on LitElement, not on the `HTMLElement` that `createElement` returns, and every call site was reaching it through the same double cast. One helper, one place to change. */
10
12
constsettled=(el: Element): Promise<void>=>
@@ -5713,3 +5715,24 @@ describe('roxy-hd-penta draws the ladder', () => {
5713
5715
el.remove();
5714
5716
});
5715
5717
});
5718
+
5719
+
describe('component surfaces',()=>{
5720
+
// A component renders inside whatever container the page gives it, so its own
5721
+
// root paints the surface instead of inheriting the page background. Shared
5722
+
// base styles are excluded: they reach every component and would pass this
5723
+
// for a component that paints nothing of its own.
5724
+
test('every component paints a surface in its own styles',()=>{
0 commit comments