зеркало из https://github.com/mozilla/gecko-dev.git
23 строки
437 B
HTML
23 строки
437 B
HTML
|
<!doctype html>
|
||
|
<style>
|
||
|
div { display: contents }
|
||
|
</style>
|
||
|
<div></div>
|
||
|
<div></div>
|
||
|
<script>
|
||
|
let divs = document.querySelectorAll('div');
|
||
|
divs[0].createShadowRoot().innerHTML = `
|
||
|
<style>
|
||
|
* { color: green; }
|
||
|
</style>
|
||
|
<span>Should be green</span>
|
||
|
`;
|
||
|
divs[1].createShadowRoot().innerHTML = `
|
||
|
<style>
|
||
|
* { color: initial; }
|
||
|
[foo] { }
|
||
|
</style>
|
||
|
<span>Should not be green</span>
|
||
|
`;
|
||
|
</script>
|