How does the focusgroup interact with custom elements that delegate focus to an element inside the shadow root?
<div focusgroup>
<host-element>
<template shadowrootmode="open" shadowrootdelegatesfocus>
<button>Inside button</button>
</template>
</host-element>
<button>Outside button</button>
</div>
Will this "just" work? Or will focus be trapped on the inside button?