Skip to content

Commit

Permalink
fix(runtime): only use setter if existing (#5947)
Browse files Browse the repository at this point in the history
* fix(runtime): only use setter if existing

* prettier
  • Loading branch information
christian-bromann committed Aug 16, 2024
1 parent 0f42656 commit 4e428e6
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/mock-doc/element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,12 @@ patchPropAttributes(
},
);

Object.defineProperty(MockButtonElement.prototype, 'form', {
get(this: MockElement) {
return this.hasAttribute('form') ? this.getAttribute('form') : null;
},
});

export class MockImageElement extends MockHTMLElement {
constructor(ownerDocument: any) {
super(ownerDocument, 'img');
Expand Down
6 changes: 5 additions & 1 deletion src/runtime/vdom/set-accessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,11 @@ export const setAccessor = (
if (memberName === 'list') {
isProp = false;
} else if (oldValue == null || (elm as any)[memberName] != n) {
(elm as any)[memberName] = n;
if (typeof (elm as any).__lookupSetter__(memberName) === 'function') {
(elm as any)[memberName] = n;
} else {
elm.setAttribute(memberName, n);
}
}
} else {
(elm as any)[memberName] = newValue;
Expand Down
12 changes: 12 additions & 0 deletions src/runtime/vdom/test/set-accessor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -886,4 +886,16 @@ describe('setAccessor for standard html elements', () => {
expect(elm.style.cssText).toEqual('margin: 30px; color: orange;');
});
});

it('uses setAttribute if element has not setter', () => {
const elm = document.createElement('button');
const spy = jest.spyOn(elm, 'setAttribute');
setAccessor(elm, 'form', undefined, 'some-form', false, 0);
expect(spy.mock.calls).toEqual([['form', 'some-form']]);

const elm2 = document.createElement('button');
const spy2 = jest.spyOn(elm2, 'setAttribute');
setAccessor(elm2, 'textContent', undefined, 'some-content', false, 0);
expect(spy2.mock.calls).toEqual([]);
});
});

0 comments on commit 4e428e6

Please sign in to comment.