Mypal/dom/base/crashtests/1026714.html
2019-03-11 13:26:37 +03:00

17 lines
355 B
HTML

<!DOCTYPE html>
<html>
<body onload="f()">
<div></div>
<style>
div { color: blue; }
</style>
<script>
function f() {
// This should not leak.
var div = document.querySelector("div");
var shadow = div.createShadowRoot();
shadow.innerHTML = '<div><style scoped>p { color: green; }</style>';
}
</script>
</body>