summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/shadow-style-removed-out-of-document.html
blob: 14c243f66fe11735475fc915d49eeeaddbd79015 (plain)
1
2
3
4
5
6
7
8
9
<!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.createShadowRoot();
root.innerHTML = '<style>div { color: green; }</style><div>Hello world</div>';
root.removeChild(root.firstChild);
</script>