Skip to content

Commit

Permalink
Merge c5e1506 into 9769dc0
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister committed Aug 14, 2019
2 parents 9769dc0 + c5e1506 commit ae976b1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/browser/render.test.js
Expand Up @@ -108,8 +108,12 @@ describe('render()', () => {
const form = div.childNodes[0];
const button = div.childNodes[1];
const input = div.childNodes[2];
expect(button).to.have.property('form', form);
expect(input).to.have.property('form', form);

// IE11 doesn't support the form attribute
if (!/(Trident)/.test(navigator.userAgent)) {
expect(button).to.have.property('form', form);
expect(input).to.have.property('form', form);
}
});

it('should allow VNode reuse', () => {
Expand Down

0 comments on commit ae976b1

Please sign in to comment.