mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-14 07:02:54 +00:00
This fixes a rendering issue on https://prodengi.kz/ that someone on Discord reported. :^)
21 lines
449 B
HTML
21 lines
449 B
HTML
<div id="myShadowHost">
|
|
<template shadowrootmode="open">
|
|
<style>
|
|
span { color: red; }
|
|
@media (min-width: 0px) {
|
|
span { color: lime; }
|
|
}
|
|
@media (max-width: 0px) {
|
|
span { color: blue !important; }
|
|
}
|
|
</style>
|
|
<span></span>
|
|
</template>
|
|
</div>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
let span = myShadowHost.shadowRoot.firstElementChild.nextElementSibling;
|
|
println(getComputedStyle(span).color);
|
|
});
|
|
</script>
|