We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the ShadowRoot.mode and ShadowRoot.delegatesFocus properties are defined as enumerable, while they shouldn't.
ShadowRoot.mode
ShadowRoot.delegatesFocus
const elm = createElement('x-test', { is: Test }); document.body.appendChild(elm); console.log(Object.keys(elm.shadowRoot)); // Actual: ["mode", "delegatesFocus"] // Expected: []
The text was updated successfully, but these errors were encountered:
fix(engine): issue #989 enumerable in shadowRoot
7bb18f0
fix(engine): issue #989 enumerable in shadowRoot (#998)
9aab030
Fixed with #998
Sorry, something went wrong.
No branches or pull requests
Description
Currently, the
ShadowRoot.mode
andShadowRoot.delegatesFocus
properties are defined as enumerable, while they shouldn't.Version
The text was updated successfully, but these errors were encountered: