blob: 3d7f89d2b2b1abc1cf4287a38942f89a278f73c3 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/js-test.js"></script>
<script>
description('Remove style element before its shadow root is attached to document but it should not crash.');
var div = document.createElement('div');
var root = div.attachShadow({mode: 'open'});
root.innerHTML = '<style>div { color: green; }</style><div>Hello world</div>';
root.removeChild(root.firstChild);
</script>