Skip to content
This repository was archived by the owner on Oct 26, 2021. It is now read-only.

Commit 93a7c11

Browse files
author
Steven Orvell
committed
Make test pass on IE11 by avoiding template.
1 parent 9d41dd6 commit 93a7c11

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/html/Element/innerHTML.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,6 @@
5151
div.innerHTML = html;
5252
assert.equal(div.innerHTML, html);
5353
assert.equal(div.childNodes.length, 1);
54-
const template = document.createElement('template');
55-
template.innerHTML = html;
56-
assert.equal(template.innerHTML, html);
57-
assert.equal(template.content.childNodes.length, 1);
5854
const table = document.createElement('table');
5955
const tableHtml = '<tbody></tbody>';
6056
table.innerHTML = tableHtml;

0 commit comments

Comments
 (0)