mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-05 02:06:25 +00:00
17 lines
355 B
HTML
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>
|