Open
Description
🐛 Bug Report
Min Repro: https://stackblitz.com/edit/typescript-bxsxvb?file=index.ts
💻 Repro or Code Sample
- Define an custom-element with some attribute with
mode="boolean"
, with the default value assignedtrue
- Define another custom-element that renders the above element into it's shadow DOM. Use boolean template binding syntax to assign the attribute a
false
value.
🤔 Expected Behavior
The attribute should not exist on the element and the underlying property value should be false
.
😯 Current Behavior
The attribute exists on the element and the underlying property value is true
.