LibWeb: Do includes_properties_from_invalidation_set() for :link & co

Fixes #3511.
This commit is contained in:
Andreas Kling 2025-02-09 12:16:15 +01:00 committed by Alexander Kalenik
commit 5f10f8c54c
Notes: github-actions[bot] 2025-02-09 14:21:51 +00:00
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<!doctype html>
<style>
ul#mylist a:link { }
ul#mylist a:any-link { }
ul#mylist a:local-link { }
</style>
<script>
let o = document.createElement("div");
o.offsetWidth;
</script>
<body>
<ul id="mylist"></ul>
</body>