Skip to content

Commit

Permalink
Fix latent mistake using old SD API
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Apr 24, 2018
1 parent 7f9de46 commit 3f24f71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/dom-if.html
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@
assert.equal(el.parentNode, removalContainer);
let div = document.createElement('div');
document.body.appendChild(div);
let frag = div.createShadowRoot();
let frag = div.attachShadow({mode: 'open'});
frag.appendChild(toBeRemoved);
setTimeout(function() {
assert.equal(el.parentNode, frag);
Expand Down

0 comments on commit 3f24f71

Please sign in to comment.