-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LibWeb: Fix underinvalidation of :nth-child using invalidation sets
For all invalidation properties nested into nth-child argument list we need to invalidate whole subtree to make sure style of sibling elements will be recalculated.
- Loading branch information
1 parent
86c4a02
commit 719678b
Showing
3 changed files
with
61 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
...input/wpt-import/css/selectors/invalidation/nth-child-of-ids-without-empty-text-node.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8" /> | ||
<title>CSS Selectors Invalidation: :nth-child(... of IDs)</title> | ||
<link rel="author" title="Zach Hoffman" href="mailto:[email protected]"> | ||
<link rel="match" href="../../../../../expected/wpt-import/css/selectors/invalidation/nth-child-of-class-ref.html"> | ||
<link rel="help" href="https://drafts.csswg.org/selectors-4/#child-index"> | ||
<style> | ||
p:nth-child(even of #t1, #t2, #t3, #t4, #t5) { | ||
color: green; | ||
} | ||
</style> | ||
<!-- | ||
This test is modified version of nth-child-of-ids.html that does not contain empty text node | ||
between <div> and <script> elements. This is important, because insertion of this empty text node | ||
causes style invalidation that does not use invalidation sets (at the time of writing this comment), | ||
so we cannot check if modification of id on #t2 correctly invalidates style of sibling <p> elements. | ||
--> | ||
<div> | ||
<p>Ignored</p> | ||
<p>Ignored</p> | ||
<p id="t1">Not ignored</p> | ||
<p id="t2">Selectively ignored</p> | ||
<p id="t3">Not ignored</p> | ||
<p id="t4">Not ignored</p> | ||
<p id="t5">Not ignored</p> | ||
<p>Ignored</p> | ||
</div><script> | ||
document.documentElement.offsetTop; | ||
t2.id = "new-id"; | ||
</script> |