Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/diff/props.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,11 @@ export function setProperty(dom, name, value, oldValue, namespace) {
name != 'colSpan' &&
name != 'role' &&
name != 'popover' &&
// observedAttributes can exist as a static property on custom elements
// a runtime check here has no tangible benefit apart from satisfying typescript
// which runs later in the toolchain
// @ts-ignore
!dom.constructor.observedAttributes?.includes(name) &&
name in dom
) {
try {
Expand Down