mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
LibWeb: Do includes_properties_from_invalidation_set() for :link & co
Fixes #3511.
This commit is contained in:
parent
c4bc0842c1
commit
5f10f8c54c
Notes:
github-actions[bot]
2025-02-09 14:21:51 +00:00
Author: https://github.com/awesomekling
Commit: 5f10f8c54c
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3516
2 changed files with 25 additions and 0 deletions
13
Tests/LibWeb/Crash/CSS/link-pseudo-class-invalidation.html
Normal file
13
Tests/LibWeb/Crash/CSS/link-pseudo-class-invalidation.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue