ladybird/Tests/LibWeb/Text/input/ShadowDOM/css-hover-shadow-dom.html

25 lines
589 B
HTML
Raw Normal View History

2025-03-18 19:28:35 +01:00
<!DOCTYPE html>
<style>
#myShadowHost:hover {
background: green;
}
#myShadowHost {
position: absolute;
width: 100px;
height: 100px;
}
</style>
<body><div id="myShadowHost"><template shadowrootmode="open"><div>hover me</div></template></div></body>
<script src="../include.js"></script>
<script>
test(() => {
if (window.internals && window.internals.movePointerTo)
internals.movePointerTo(50, 50);
let s = getComputedStyle(myShadowHost);
println("hovered bg: " + s.backgroundColor);
myShadowHost.remove();
});
</script>